diff --git a/README.md b/README.md index 392bbfd..7115652 100644 --- a/README.md +++ b/README.md @@ -159,21 +159,21 @@ But there are also some relative path variables that you need to remember: * `cd !!` to go back to the previous directory ##### Modifying content -##### `touch` +##### touch `touch`will create a empty file * `touch example.txt` -###### `mkdir` +##### mkdir `mkdir` will create a empty directory * `mkdir ~/` Edit files using an text editor of choice ex. [nano](#nano) or [vim](# Vi/Vim/Nvim) -##### `rm` +##### rm `rm` to remove files or/and directorys * use `rm -r` to remove directorys * **be EXTEMLY CAREFULL with `rm` it removes ALL FILES and they GONE no trash dir just gone** * **never ever run `rm -rf /`** it will stop your system form working and removes all other files * used like: `rm testfile.txt` or `rm -r ./testdir` -###### `cat` +##### cat `cat` will print out the contend of a given file * used like : `cat testfile.txt`