tldr/common/rm.md
Peter Tripp a85601486c Added: Cal, srm, md5, md5sum, xed
Edited cp and rm. Fixed markdown escaping the wildcard.
2014-02-10 15:44:02 -08:00

15 lines
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 {{\*}}`