The command for changing directories iscd (change directory). Its usage is cd PATH, where PATH represents the path to the desired directory. This PATH can be an absolute path or a relative path.
Examples:$ cd ../.. ← Navigate back two levels in the directory structure (relative path operation). $ cd /usr/bin ←Enter the directory " /usr/bin" (using absolute path) $ cd ~ ←Enter the home directory $ cd - ←Return to the previous directory |