Created
July 22, 2018 13:49
-
-
Save fearrr/5b1c62e255e7969eb258a5ab681da88a to your computer and use it in GitHub Desktop.
.bash_aliases
This file contains 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 ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -ltrhA' | |
alias ..='cd ../' | |
alias ...='cd ../..' | |
alias lg='ls|grep --color' | |
#Терминал | |
alias c='clear' | |
alias r='reset' | |
#Другое | |
alias eba='nano /root/.bash_aliases' | |
alias fuck='eval $(thefuck $(fc -ln -1)); history -r' | |
alias ghistory="history | grep" | |
alias port='netstat -tulanp' | |
alias listen="lsof -P -i -n" | |
alias ?='man' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment