Quick Tip
Stealthy Directory Navigation with `pushd` and `popd`
Challenge: You frequently jump between a few key directories, but constantly typing `cd` and remembering previous paths can be tedious and error-prone.
The Solution: Leverage the `pushd` and `popd` commands to manage a directory stack, allowing you to quickly switch between directories without losing your place.
# To move to a new directory and add it to the stack: pushd /path/to/your/directory # To switch back to the previous directory on the stack: popd # To see the current directory stack: dirs -v
Why it works: `pushd` adds the current directory to a stack and then changes to the specified directory. `popd` removes the top directory from the stack and changes to it, effectively allowing you to backtrack through your navigation history.
Pro-Tip: Use `pushd +n` where ‘n’ is a number to switch to the nth directory on the stack.
Linux Tips & Tricks | © ngelinux.com | 5/2/2026
