Terminal Navigation
Tips for moving quickly and safely in the shell.
Movement
- •
cd -toggles between the last two directories. - •
pushdandpopdmanage a directory stack. - •
ls -lafor full directory context.
Search
- •
rgfor fast text search. - •
find . -maxdepth 2 -type ffor quick file discovery.
Safety
- •Use
rm -iwhen deleting unfamiliar files. - •Prefer
mvovercpto avoid stale copies. - •Confirm shell expansions with
echobefore running destructive commands.