The cd .. command is used to navigate to the parent directory of your current directory in the terminal. Here's how to use it:
-
Open your terminal.
-
Check your current directory by using the
pwdcommand:pwd -
To move to the parent directory, simply type:
cd .. -
You can verify that you've moved up one level by using
pwdagain:pwd
This will show you the path of the parent directory.
