Created
November 26, 2024 06:49
-
-
Save loskiq/7d3c2ebbf09194790c5c0eb99070aa16 to your computer and use it in GitHub Desktop.
My bash aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias e='exit' | |
alias s='ssh' | |
alias ls='ls -al --group' | |
alias rm='rm -rf' | |
alias nano='nano -w -l -$' | |
alias mc='EDITOR=nano mc' | |
alias shred='shred -u -z -n 10' | |
alias nload='nload -t 1000' | |
alias iftop='iftop -n -N -P' | |
alias mtr='mtr -n' | |
alias nmap='nmap -n' | |
alias tcpdump='tcpdump -n' | |
alias traceroute='traceroute -n' | |
alias gen='tr -dc A-Za-z0-9 </dev/urandom | head -c 32; echo' | |
alias uuid='cat /proc/sys/kernel/random/uuid' | |
alias logssh='journalctl --no-pager -u ssh.service' | |
alias apt-get='apt-get --no-install-recommends' | |
alias shutdown='systemctl poweroff' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment