1 min read

Bash commands to navigate directories

🚀 TIL: simple, yet powerful bash commands.

pushd: pushes the current directory to a stack for later and then change to another directory. ❇️

popd: pops the previous directory and navigates to it. ❇️

An easy way to switch between two directories (or many for that matter). 🔥