Ever had that typo where you wrote cd..
instead of cd ..
โ well this tip not only addresses that typo but also adds a couple other aliases to help you easily navigate through your systems directories. #OneDevMinute
################################################
# ๐ฅ #OneDevMinute
#
# Daily one minute developer tips.
# Ahmad Awais (https://twitter.com/MrAhmadAwais)
################################################
# Easier directory navigation.
alias ~="cd ~"
alias .="cd .."
alias ..="cd ../.."
alias ...="cd ../../.."
alias ....="cd ../../../.."
alias cd..="cd .." # Typo addressed.
- ๐ฆ Twitter: https://twitter.com/MrAhmadAwais (Preferred)
- โ๏ธ Blog: https://AhmadAwais.com
- ๐ฎ GitHub: https://github.com/AhmadAwais
- ๐ LinkedIn: https://www.linkedin.com/in/MrAhmadAwais
๐ P.S. If you like my work, feel free to share it, like it, and subscribe (& press the bell icon for updates). Peace! โ๏ธ
But it's has in oh-my-zsh https://github.com/robbyrussell/oh-my-zsh/wiki/Cheatsheet