cd ..

Go up one directory level

.. refers to the parent directory. cd .. moves you up one level. cd ../.. moves up two levels in one command. This is how you navigate back toward / from wherever you are.

Example

$ cd ..
$ pwd
/var
Tip: Type it yourself in the terminal below - reading is not the same as doing.