cd
cd
stands for "Change Directory." Basically you can type cd
followed by a directory to move to that directory or "folder." Its a very simple command with very simple syntax Some examples:
- This command snippet changes directory to the root directory, or base of the filesystem.
cd /
- This command snippet moves you to your user home
cd ~
- This command moves up one directory, you can go further by adding more
../
'scd ../
- This command goes up a couple directories and then into another
cd ../../some/folder