> For the complete documentation index, see [llms.txt](https://graygzou.gitbook.io/how-to/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://graygzou.gitbook.io/how-to/dos_batch.md).

# DOS\_batch

## Classic commands

* `CLS`: Clears the screen
* `EXIT`: Exits the command-line process when the batch file terminates.
* `BREAK`: When turned on, batch file will stop if the user presses < Ctrl >-< Break > when turned off, the script will continue until done.
  * Options: `ON` / `OFF`
  * Example: `BREAK=OFF`
* `CALL`: Calls another batch file or another program and then returns control when done.
* `CHOICE`: Allows user input. Default is Y or N. You may make your own choice with the /C: switch.
  * Example: `CHOICE /C:123`

## Acknowledgements

*
