- touch To update the timestamp on a file, or to create a new file if one does not exist:
touch myFile.txt
- mv To move a file from one location to another, or to rename a file:
mv ./somefile ../somefile
- mkdir Used to create a directory
mkdir coolGames
- ls Used to list the contents of a directoy
ls /etc/
- rm Used to delete a file
rm somefile.txt
- Linux/Unix is case-sensitive!
NEXT
PREVIOUS