mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 10:26:01 +02:00
16 lines
344 B
Markdown
16 lines
344 B
Markdown
# exit
|
|
|
|
> Beendet die aktuelle CMD-Instanz oder die aktuelle Batch-Datei.
|
|
> Weitere Informationen: <https://learn.microsoft.com/windows-server/administration/windows-commands/exit>.
|
|
|
|
- Beenden der aktuellen CMD-Instanz:
|
|
|
|
`exit`
|
|
|
|
- Beenden des aktuellen Batch-Skripts:
|
|
|
|
`exit /b`
|
|
|
|
- Beenden mit einem bestimmten Exit-Code:
|
|
|
|
`exit {{exit_code}}`
|