Use this tool to generate cd commands for navigating directories in Linux.
-.| Command | Description |
|---|---|
| cd /home/user/Documents | Move to a Specific Directory |
| cd cd ~ |
Go to the Home Directory |
| cd .. | Move Up One Level (Parent Directory) |
| cd ../../ | Moves two levels up in the directory structure |
| cd / | Go to the Root Directory |
| cd - | Back to Previous Directory |
| cd "My Documents" cd My\ Documents |
Go to to a Directory with Spaces in the Name |
| cd /var/log | Moves to /var/log using the full path. |