Skip to content

Instantly share code, notes, and snippets.

@alexdlaird
Created August 26, 2014 19:24
Show Gist options
  • Save alexdlaird/907063c010475294aede to your computer and use it in GitHub Desktop.
Save alexdlaird/907063c010475294aede to your computer and use it in GitHub Desktop.
Useful aliases for a Linux profile. Place in /etc/bashrc or ~/.bashrc.
alias vi='vim'
alias sudo='sudo '
alias which='type -a'
alias path='echo -e ${PATH//:/\\n}'
alias libpath='echo -e ${LD_LIBRARY_PATH//:/\\n}'
alias du='du -kh'
alias df='df -kTh'
alias ..='cd ..'
alias ...='cd ../..'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment