thingsiplay@kbin.socialtoProgramming@beehaw.org•Just realized I can just use "..." to go back two directories! Is this a zsh feature?
10·
1 year agoBTW in case you didn’t know, a bare cd
without arguments will bring you to your home. I have alias setup to quickly navigate one or two directories up and print the path then:
alias ..='cd .. && pwd'
alias ...='cd ../.. && pwd'
Should works with every shell and I don’t even need to type cd itself.
deleted by creator