Linux Commands Helper
💬 Your AI-powered Linux assistant
cd Command - Change Directory
The cd command is used to change the current working directory to a specified directory.
Syntax
cd [directory]
Examples
cd /home/user
Change to the /home/user directory.
cd ..
Move to the parent directory.
cd ~
Change to the current user's home directory.
Notes
- If no directory is specified, cd changes to the user's home directory.
- cd is a shell built-in command, not an external executable.