Created
February 22, 2014 19:37
-
-
Save bengolder/9160875 to your computer and use it in GitHub Desktop.
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
# Some shorcuts useful for navigation and directory listings | |
# aliases are shortcuts that must be the first command in order to work | |
alias ll='ls -l -A' | |
alias la='ls -A' | |
alias l='ls -CF' | |
alias .='open .' | |
alias ..='cd ..' | |
alias ...='cd .. ; cd ..' | |
alias ~='cd ~' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment