exec: add Dutch translation (#13361)

exec:  Dutch translation
This commit is contained in:
Sebastiaan Speck 2024-08-13 00:27:59 +02:00 committed by GitHub
parent a2ab7b824d
commit b970639daf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 28 additions and 0 deletions

8
pages.nl/common/exec.md Normal file
View File

@ -0,0 +1,8 @@
# exec
> Voer een commando uit zonder een child-proces te creëren.
> Meer informatie: <https://manned.org/exec.1posix>.
- Voer een specifiek commando uit met behulp van de huidige omgevingsvariabelen:
`exec {{commando -with -flags}}`

20
pages.nl/linux/exec.md Normal file
View File

@ -0,0 +1,20 @@
# exec
> Voer een commando uit zonder een child-proces te creëren.
> Meer informatie: <https://www.gnu.org/software/bash/manual/bash.html#index-exec>.
- Voer een specifiek commando uit:
`exec {{commando -with -flags}}`
- Voer een commando uit met een (grotendeels) lege omgeving:
`exec -c {{commando -with -flags}}`
- Voer een commando uit als een login-shell:
`exec -l {{commando -with -flags}}`
- Voer een commando uit met een andere naam:
`exec -a {{naam}} {{commando -with -flags}}`