4 ms·
I have these two aliases in my .zshrc file: alias ..="cd .." alias ...="cd ../.." For moving around to other directories I use autojump (https://github.co
by cygni 13y ago
I have these two aliases in my .zshrc file:
alias ..="cd .."
alias ...="cd ../.."
For moving around to other directories I use autojump (https://github.com/joelthelion/autojump https://github.com/joelthelion/autojump).
- kroger 13y agoI have the same, but I use cd[a]+: alias cda='cd ../' alias cdaa='cd ../../' alias cdaaa='cd ../../../' I guess I was influenced by Lisp at the time, with car, cdr, cdar, cddr, etc ;-)
- Shish2k 13y ago> I guess I was influenced by Lisp at the time, with car, cdr, cdar, cddr, etc ;-) You saw that naming scheme and thought "wow, that's sensible"?!