mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
parent
777e336b2b
commit
a2ab7b824d
2 changed files with 28 additions and 0 deletions
12
pages.nl/common/exit.md
Normal file
12
pages.nl/common/exit.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
# exit
|
||||
|
||||
> Verlaat de shell.
|
||||
> Meer informatie: <https://manned.org/exit.1posix>.
|
||||
|
||||
- Verlaat de shell met de exitstatus van het meest recent uitgevoerde commando:
|
||||
|
||||
`exit`
|
||||
|
||||
- Verlaat de shell met een specifieke exitstatus:
|
||||
|
||||
`exit {{exit_code}}`
|
16
pages.nl/windows/exit.md
Normal file
16
pages.nl/windows/exit.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# exit
|
||||
|
||||
> Verlaat de huidige CMD-instantie of het huidige batchbestand.
|
||||
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/exit>.
|
||||
|
||||
- Verlaat de huidige CMD-instantie:
|
||||
|
||||
`exit`
|
||||
|
||||
- Verlaat het huidige batchscript:
|
||||
|
||||
`exit /b`
|
||||
|
||||
- Verlaat met een specifieke exitcode:
|
||||
|
||||
`exit {{2}}`
|
Loading…
Add table
Reference in a new issue