Skip to content

Instantly share code, notes, and snippets.

@bengolder
Created February 22, 2014 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bengolder/9160875 to your computer and use it in GitHub Desktop.
Save bengolder/9160875 to your computer and use it in GitHub Desktop.
# 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