Skip to content

Instantly share code, notes, and snippets.

@Aracki
Last active August 15, 2018 12:31
Show Gist options
  • Save Aracki/ef0b08b1aed338ea323e8f92b2398989 to your computer and use it in GitHub Desktop.
Save Aracki/ef0b08b1aed338ea323e8f92b2398989 to your computer and use it in GitHub Desktop.
bash aliases
alias cd..='cd ..'
alias ..="cd .."
alias ...="cd ../.."
alias ....="cd ../../.."
alias .....="cd ../../../.."
alias c='clear'
alias h='history'
alias l='ls -lrth'
alias tre='tree -L 2'
alias s='git status'
alias dif='git diff'
alias publicip='curl ipinfo.io/ip'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment