From 566234515d2fe44816bffaf13bad72c7ee64f5ff Mon Sep 17 00:00:00 2001 From: Kamalesh Palanisamy Date: Mon, 15 Oct 2018 22:32:55 +0530 Subject: [PATCH] Created a new guide about the mkdir command in linux (#19301) * Created a guide about the mkdir command * Update index.md * Added a guide for the rm command in bash --- .../pages/guide/english/bash/bash-mkdir/index.md | 11 +++++++++++ .../src/pages/guide/english/bash/bash-rm/index.md | 15 +++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 client/src/pages/guide/english/bash/bash-mkdir/index.md create mode 100644 client/src/pages/guide/english/bash/bash-rm/index.md diff --git a/client/src/pages/guide/english/bash/bash-mkdir/index.md b/client/src/pages/guide/english/bash/bash-mkdir/index.md new file mode 100644 index 0000000000..29e0932fd0 --- /dev/null +++ b/client/src/pages/guide/english/bash/bash-mkdir/index.md @@ -0,0 +1,11 @@ +--- +title: Bash mkdir +--- + +## Bash command: mkdir + + +**Make a Directory** ,for example `mkdir hello`. + +### More Information: +* [Wikipedia](https://en.wikipedia.org/wiki/Mkdir) diff --git a/client/src/pages/guide/english/bash/bash-rm/index.md b/client/src/pages/guide/english/bash/bash-rm/index.md new file mode 100644 index 0000000000..8a83f897fd --- /dev/null +++ b/client/src/pages/guide/english/bash/bash-rm/index.md @@ -0,0 +1,15 @@ +--- +title: Bash rm +--- + +## Bash command: rm + +**Delete a File/Directory** ,for example `rm hello`. + +There are few commonly used arguments: + +- `r` , means to recursively delete all the folders inside a directory. +- `f` , means to forcefully delete anything folder or file. + +### More Information: +* [Wikipedia](https://en.wikipedia.org/wiki/Rm_(Unix))