Hacker News new | ask | show | jobs
by cygni 4670 days 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).
1 comments

I 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 ;-)

> 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"?!