mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-02 05:55:23 +02:00

* Fix file(s) and more path/to * Update pages.it/common/rm.md Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com> * thanks emily your suggestion was dogshit https://github.com/tldr-pages/tldr/blob/main/contributing-guides/translation-templates/common-arguments.md Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>
24 lines
640 B
Markdown
24 lines
640 B
Markdown
# rm
|
|
|
|
> Remove files or directories.
|
|
> More information: <https://www.gnu.org/software/coreutils/rm>.
|
|
|
|
- Remove files from arbitrary locations:
|
|
|
|
`rm {{path/to/file}} {{path/to/another/file}}`
|
|
|
|
- Recursively remove a directory and all its subdirectories:
|
|
|
|
`rm -r {{path/to/directory}}`
|
|
|
|
- Forcibly remove a directory, without prompting for confirmation or showing error messages:
|
|
|
|
`rm -rf {{path/to/directory}}`
|
|
|
|
- Interactively remove multiple files, with a prompt before every removal:
|
|
|
|
`rm -i {{path/to/file1 path/to/file2 ...}}`
|
|
|
|
- Remove files in verbose mode, printing a message for each removed file:
|
|
|
|
`rm -v {{path/to/directory/*}}`
|