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:
committed by
Todd Chaffee
parent
c6387859b7
commit
566234515d
11
client/src/pages/guide/english/bash/bash-mkdir/index.md
Normal file
11
client/src/pages/guide/english/bash/bash-mkdir/index.md
Normal 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)
|
15
client/src/pages/guide/english/bash/bash-rm/index.md
Normal file
15
client/src/pages/guide/english/bash/bash-rm/index.md
Normal 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))
|
Reference in New Issue
Block a user