mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
parent
a2ab7b824d
commit
b970639daf
2 changed files with 28 additions and 0 deletions
8
pages.nl/common/exec.md
Normal file
8
pages.nl/common/exec.md
Normal 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
20
pages.nl/linux/exec.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue