How can the '..' character be used for navigating the file system?

0112

In the file system, the .. character is used to refer to the parent directory of the current directory. You can use it with the cd command to navigate up one level in the directory hierarchy.

For example:

cd ..

This command will move you from your current directory to its parent directory. You can also use it in combination with other directory names to navigate multiple levels up. For example:

cd ../..

This command will take you up two levels in the directory structure.

0 Comments

no data
Be the first to share your comment!