nm, rm, xz: add Dutch translation (#11546)

Co-authored-by: Leon <leonvsc@users.noreply.github.com>
This commit is contained in:
Sebastiaan Speck
2023-11-23 14:58:33 +01:00
committed by GitHub
parent fe6de50f35
commit 6b7708d274
3 changed files with 81 additions and 0 deletions

25
pages.nl/common/rm.md Normal file
View File

@@ -0,0 +1,25 @@
# rm
> Verwijder bestanden of mappen.
> 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, maar negeer niet-bestaande bestanden:
`rm -f {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden [i]nteractief door vóór elke verwijdering bevestiging te vragen:
`rm -i {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden en toon informatie over iedere verwijdering:
`rm -v {{pad/naar/bestand1 pad/naar/bestand2 ...}}`
- Verwijder specifieke bestanden en mappen [r]ecursief:
`rm -r {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}}`