1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-26 13:44:11 +02:00
tldr/pages.nl/linux/rm.md
Managor 320d209c78
*: fix style guide issues part 2 (#15777)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-03-07 13:45:30 +02:00

29 lines
968 B
Markdown

# rm
> Verwijder bestanden of directories.
> Bekijk ook: `rmdir`.
> Meer informatie: <https://www.gnu.org/software/coreutils/manual/html_node/rm-invocation.html>.
- Verwijder specifieke bestanden:
`rm {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden waarbij niet-bestaande genegeerd worden:
`rm {{[-f|--force]}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden interactief met een prompt voor elke verwijdering:
`rm {{[-i|--interactive]}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden met het afdrukken van informatie over elke verwijdering:
`rm {{[-v|--verbose]}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden en directories recursief:
`rm {{[-r|--recursive]}} {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}}`
- Verwijder lege directories (dit wordt beschouwd als de veilige methode):
`rm {{[-d|--dir]}} {{pad/naar/map}}`