1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-09 05:35:42 +02:00

exit: add page

This commit is contained in:
pxgamer 2018-06-21 10:24:47 +01:00 committed by Agniva De Sarker
parent 118004ed76
commit 1f3fef871c

15
pages/windows/exit.md Normal file
View file

@ -0,0 +1,15 @@
# exit
> Quit the current CMD instance or the current batch file.
- Quit the current CMD instance:
`exit`
- Quit the current batch script:
`exit /b`
- Quit using a specific exit code:
`exit {{exit_code}}`