The cd (change directory) command in linux

Опубликовано: 28 Сентябрь 2024
на канале: Chris Gregg
6,678
23

This video describes the cd command and how it is used to go to your home directory and in between directories by using the .. (parent directory) command.

To go to your home directory:

cd ~

or

cd

To change to the parent directory:

cd ..

To change to a grandparent directory:

cd ../..

etc.