Moving around
| Term | Meaning |
|---|---|
pwd | Show the folder you are in |
ls | List files in the current folder |
cd folder | Go into a folder |
cd .. | Go up one folder |
Working with files
| Term | Meaning |
|---|---|
mkdir name | Make a new folder |
touch file.txt | Create an empty file |
cp a b | Copy file a to b |
mv a b | Move or rename a to b |
rm file | Delete a file (careful, no undo) |
Tagsterminaltools
Practise the reference.
Open the compiler, paste one snippet, and change it until you understand what it does.
Related