Files
freeCodeCamp/guide/english/bash/bash-rm/index.md

18 lines
452 B
Markdown
Raw Normal View History

---
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.
- `-rf` , means that both arguments will be used together.
### More Information:
* [Wikipedia](https://en.wikipedia.org/wiki/Rm_(Unix))
* [Linux](https://linux.die.net/man/1/rm)