README.md aktualisiert

This commit is contained in:
develcookingtest 2024-10-10 20:44:13 +00:00
parent 0e71a76daa
commit 6cbeaa0f54
1 changed files with 4 additions and 4 deletions

View File

@ -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 * `cd !!` to go back to the previous directory
##### Modifying content ##### Modifying content
##### `touch` ##### touch
`touch`will create a empty file `touch`will create a empty file
* `touch example.txt` * `touch example.txt`
###### `mkdir` ##### mkdir
`mkdir` will create a empty directory `mkdir` will create a empty directory
* `mkdir ~/` * `mkdir ~/`
Edit files using an text editor of choice ex. [nano](#nano) or [vim](# Vi/Vim/Nvim) 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 `rm` to remove files or/and directorys
* use `rm -r` to remove directorys * use `rm -r` to remove directorys
* **be EXTEMLY CAREFULL with `rm` it removes ALL FILES and they GONE no trash dir just gone** * **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 * **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` * used like: `rm testfile.txt` or `rm -r ./testdir`
###### `cat` ##### cat
`cat` will print out the contend of a given file `cat` will print out the contend of a given file
* used like : `cat testfile.txt` * used like : `cat testfile.txt`