1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 15:17:58 +01:00
tldr/pages/common/rm.md
2014-03-04 23:28:29 +11:00

15 lines
No EOL
262 B
Markdown

# rm
> Remove files or directories
- Remove files from arbitrary locations
`rm {{/path/to/file}} {{/otherpath/to/file2}}`
- Remove recursively a directory and all it's subdirectories
`rm -r {{/path/to/folder}}`
- Prompt before every removal
`rm -i {{\*}}`