Print Working Directory (pwd)

Displays the full path of the current directory.

bash
$ pwd
/home/mwstout

Changing Directories

Changes the current working directory.

bash
$ cd /etc
$ pwd
/etc

Move up one directory:

bash
$ cd ..

Return to the home directory:

bash
$ cd ~

Return to the previous directory:

bash
$ cd -

Move to the root directory:

bash
$ cd /

Print Working Director

Change Directory (cd)

Changes the current working directory.