Skip to main content

Search

Items tagged with: cd


Neat :) Not being POSIX that doesnโ€™t work for me in Fish shell but Alt+left-arrow goes to the previous working directory and Alt+right-arrow goes to the next.

# # # #


From a POSIX shell `$OLDPWD` holds the name of the previous working directory:
cd /tmp
echo You are here: $PWD
echo You were here: $OLDPWD
cd $OLDPWD

# # # #

โ‡ง