Skip to content

Instantly share code, notes, and snippets.

@mneuhaus
Created September 26, 2013 13:51
Show Gist options
  • Save mneuhaus/6714516 to your computer and use it in GitHub Desktop.
Save mneuhaus/6714516 to your computer and use it in GitHub Desktop.
don't you hate navigation the commandline by cd .. ? here are a few shorter aliases for jumping back:
alias ..='cd ../../'
alias ...='cd ../../../'
alias ....='cd ../../../../'
alias .....='cd ../../../../../'
alias ......='cd ../../../../../../'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment