All important linux commands to know
- ls (shows all of the files in the directory)
- ls -l gives you a list
- ls -a shows you the hidden files
- pwd tells you what directory are in
- cd to change the directory you are in
- touch to create a file
- echo to repeat stuff in the console
- echo " " > filename to write something in a file
- nano filename to edit the file
- cat filename to see the contents of that file
- shred filename to make sure the content of that file isnt visible
- mkdir to make a new folder
- cp