exit: add Dutch translation (#13360)

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

12
pages.nl/common/exit.md Normal file
View 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
View 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}}`