Common cd commands include:
-
Move to a specific directory:
cd /path/to/directory -
Move up one level to the parent directory:
cd .. -
Move to the home directory:
cd ~ -
Move to the previous directory:
cd - -
Move to a subdirectory:
cd subdirectory_name
These commands help you navigate through the file system in a terminal.
