Skip to content

Instantly share code, notes, and snippets.

@fearrr
Created July 22, 2018 13:49
Show Gist options
  • Save fearrr/5b1c62e255e7969eb258a5ab681da88a to your computer and use it in GitHub Desktop.
Save fearrr/5b1c62e255e7969eb258a5ab681da88a to your computer and use it in GitHub Desktop.
.bash_aliases
#Навигация
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