# rm -rf

`rm -rf myfolder`

Delete a folder and everything in it without asking — the most dangerous command there is.

## What each part does

- `rm` — command — delete
- `-rf` — flag (a command option)
- `myfolder` — argument: a file, a folder, or text

Source: https://zero2vibecode.com/explain/rm-rf
