Skip to content

Instantly share code, notes, and snippets.

@manuelbieh
Created October 17, 2019 21:07
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 manuelbieh/ae4b84683bd564af7d5c569bcc6c5f89 to your computer and use it in GitHub Desktop.
Save manuelbieh/ae4b84683bd564af7d5c569bcc6c5f89 to your computer and use it in GitHub Desktop.
dirUp1() { cd ../"$1"; }
dirUp2() { cd ../../"$1"; }
dirUp3() { cd ../../../"$1"; }
dirUp4() { cd ../../../../"$1"; }
dirUp5() { cd ../../../../../"$1"; }
dirUp6() { cd ../../../../../../"$1"; }
alias ..=dirUp1
alias ...=dirUp2
alias ....=dirUp3
alias .....=dirUp4
alias ......=dirUp5
alias .......=dirUp6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment