From 6cbeaa0f545b6950006b7638ff1eb102af589c40 Mon Sep 17 00:00:00 2001 From: develcookingtest Date: Thu, 10 Oct 2024 20:44:13 +0000 Subject: [PATCH] README.md aktualisiert --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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`