While in the command line mode, a user moves down two directories to view the contents of the subdirectory. What command would she use to move back up two directories from where she started?
A
cd ../..
explanation
The command CD (Change Directory).. (two dots) refers to the directory above, so../.. moves you up to two directories.
Comments