16 lines
349 B
Markdown
16 lines
349 B
Markdown
---
|
|
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))
|