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
This commit is contained in:
Kamalesh Palanisamy
2018-10-15 22:32:55 +05:30
committed by Todd Chaffee
parent c6387859b7
commit 566234515d
2 changed files with 26 additions and 0 deletions

View File

@ -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)

View File

@ -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))