1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:42:09 +02:00

rm: add Dutch translation (#13691)

This commit is contained in:
Sebastiaan Speck 2024-09-21 16:22:17 +02:00 committed by GitHub
parent 3e1ff6c3e2
commit 4f38ce61e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

29
pages.nl/linux/rm.md Normal file
View file

@ -0,0 +1,29 @@
# rm
> Verwijder bestanden of directories.
> Zie ook: `rmdir`.
> Meer informatie: <https://www.gnu.org/software/coreutils/rm>.
- Verwijder specifieke bestanden:
`rm {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden waarbij niet-bestaande genegeerd worden:
`rm --force {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden interactief met een prompt voor elke verwijdering:
`rm --interactive {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden met het afdrukken van informatie over elke verwijdering:
`rm --verbose {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden en directories recursief:
`rm --recursive {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}}`
- Verwijder lege directories (dit wordt beschouwd als de veilige methode):
`rm --dir {{pad/naar/map}}`