CD
The cd
tool is used in the Linux command line to change the directory you are
currently in to the directory specified. To move up one directory run:
cd ..
. This works because in Linux .
is used to represent your current
working directory and ..
is used to represent the directory above your current
directory.
For any more information on cd
please refer to the Man page of cd
.