cd Folder-Name
Going inside a directory from current directory using relative path
cd /home/user/Folder-Name
Going inside a directory at the current directory using Absolute Path
cd ..
Going back to the parent directory from the current location
cd ../user2
Going inside a directory which is located inside the parent directory
cd ../../
Move 2 directories back from current location
cd ~ OR cd OR cd $home
Move to home directory of logged in user from any location
cd /home/user*
Going inside a directory whose name initial is “user….”
cd /home/user?
Going inside a directory whose name initial is “user?”
cd -
Going back to the previous working directory
cd . OR cd ./
Going to the current working directory (do nothing)
cd /
Changing the directory to root of the System
cd /etc
Going to any directory using an absolute path