mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
15 lines
248 B
Markdown
15 lines
248 B
Markdown
![]() |
# rm
|
||
|
|
||
|
> Remove files or directories
|
||
|
|
||
|
- Remove files from arbitrary
|
||
|
|
||
|
`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 *`
|