From bash to zsh and everywhere in between, show me yours and I’ll show you mines. Inspire others or get some feedback.
Simply copy & paste the output of alias in your terminal or add some comments to explain things for others.
Edit: Kbin users, click ‘More’ on a comment and use the fediverse link to read responses that have funky formatting
A different way to do the usual
..="cd .."
and endless chains of...="cd ../.."
types of aliases:These take the number of directories that you want to move up as an argument (e.g.
.. 3
), otherwise they move you up one directory when used with no arguments.