rm: add Dutch translation (#13691)
This commit is contained in:
29
pages.nl/linux/rm.md
Normal file
29
pages.nl/linux/rm.md
Normal 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}}`
|
Reference in New Issue
Block a user