Type commands below to see how they would work in a Unix terminal.
Command | Description | Example |
---|---|---|
pwd |
Print working directory | pwd |
ls |
List files and directories | ls |
cd |
Change directory | cd documents |
mkdir |
Create a new directory | mkdir projects |
touch |
Create a new file | touch file.txt |
cat |
View file contents | cat file.txt |
echo |
Print text | echo Hello |