Created
August 26, 2014 19:24
-
-
Save alexdlaird/907063c010475294aede to your computer and use it in GitHub Desktop.
Useful aliases for a Linux profile. Place in /etc/bashrc or ~/.bashrc.
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 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