mirror of https://github.com/CrimsonTome/tldr.git
17 lines
344 B
Markdown
17 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}}`
|