What each of the following commands does?
- cd /
- cd ~
- cd
- cd ..
- cd .
- cd -
Answer
- cd / -> change to the root directory
- cd ~ -> change to your home directory
- cd -> change to your home directory
- cd .. -> change to the directory above your current i.e parent directory
- cd . -> change to the directory you currently in
- cd - -> change to the last visited path