Skip to content

Basics commands

CiamalaKombeGreg edited this page Oct 5, 2023 · 24 revisions

Basic commands of linux shell


Man

The command man display a small manual with a explanation of how to use a command. You can write it man <command>

man ls
man mv

cd

The command cd allow you to navigate between directories. You can change from directory to another one by typing the name of the directory you want to go in cd <directory>, you can even write the path to the directory cd /<directory>/<directory>/<directory>

Clone this wiki locally