Skip to content

Instantly share code, notes, and snippets.

@ryanburgess
Last active August 29, 2015 14:17
Show Gist options
  • Save ryanburgess/672f308a20fb364c4a61 to your computer and use it in GitHub Desktop.
Save ryanburgess/672f308a20fb364c4a61 to your computer and use it in GitHub Desktop.
Bash Shell Alias - quick directory
# a quick way to get out of current directory
alias .1='cd ../'
alias .2='cd ../../'
alias .3='cd ../../../'
alias .4='cd ../../../../'
alias .5='cd ../../../../../'
alias .6='cd ../../../../../../'
alias .7='cd ../../../../../../../'
alias .8='cd ../../../../../../../../'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment