how to exit cd in kali linux terminal code example
Example 1: change direcotry ubuntu
cd directory_name
Example 2: terminal change directory
// change directory in terminal
cd folder_name/subfolder_name
// go up one directory level
cd ..
// back to previous directory
cd -
// return to home directory
cd