Skip to content

Instantly share code, notes, and snippets.

@jasonm23
Created April 21, 2010 08:23
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 jasonm23/373580 to your computer and use it in GitHub Desktop.
Save jasonm23/373580 to your computer and use it in GitHub Desktop.
collection of useful shell aliases.
# collection of useful shell aliases.
alias ll='ls -halFG'
alias l='ls -1aG'
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias p='pwd'
alias findr='find . -regex'
alias findir='find . -iregex'
alias findn='find . -name'
alias findin='find . -iname'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment