Skip to content

Instantly share code, notes, and snippets.

@winstxnhdw
Forked from jcefoli/choice.bat
Last active December 31, 2022 20:36
Show Gist options
  • Save winstxnhdw/01d6fde108c17751dd3a8dd80f883631 to your computer and use it in GitHub Desktop.
Save winstxnhdw/01d6fde108c17751dd3a8dd80f883631 to your computer and use it in GitHub Desktop.
Improved template for binary choices in batch files.
@echo off
set /p choice=Do something? [y/N]:
if /i '%choice%'=='Y' goto yes
pause
exit
:yes
echo Do all of the yes things here!
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment