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:
parent
3e1ff6c3e2
commit
4f38ce61e5
1 changed files with 29 additions and 0 deletions
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}}`
|
Loading…
Add table
Reference in a new issue