1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 23:55:26 +02:00

stow: add Dutch translation (#17050)

This commit is contained in:
Dylan 2025-07-01 09:05:17 +00:00 committed by GitHub
parent dd977f9733
commit ac568d4b79
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

26
pages.nl/common/stow.md Normal file
View file

@ -0,0 +1,26 @@
# stow
> Symlink-beheerder.
> Vaak gebruikt om dotfiles te beheren.
> Bekijk ook: `chezmoi`, `tuckr`, `vcsh`, `homeshick`.
> Meer informatie: <https://www.gnu.org/software/stow/manual/html_node/Invoking-Stow.html>.
- Symlink alle bestanden recursief naar de opgegeven map:
`stow {{[-t|--target]}} {{pad/naar/doel_map}} {{bestand1 map1 bestand2 map2}}`
- Verwijder alle symlinks recursief in de opgegeven map:
`stow {{[-D|--delete]}} {{[-t|--target]}} {{pad/naar/doel_map}} {{bestand1 map1 bestand2 map2}}`
- Simuleer om te zien hoe het resultaat eruit ziet:
`stow {{[-n|--simulate]}} {{[-t|--target]}} {{pad/naar/doel_map}} {{bestand1 map1 bestand2 map2}}`
- Verwijder en maak opnieuw de symlinks aan:
`stow {{[-R|--restow]}} {{[-t|--target]}} {{pad/naar/doel_map}} {{bestand1 map1 bestand2 map2}}`
- Sluit bestanden uit die overeenkomen met een reguliere expressie:
`stow --ignore={{reguliere_expressie}} {{[-t|--target]}} {{pad/naar/doel_map}} {{bestand1 map1 bestand2 map2}}`