Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active March 10, 2019 12:24
Show Gist options
  • Save ezhov-da/fe53211136194a0159ae77160bf02fc1 to your computer and use it in GitHub Desktop.
Save ezhov-da/fe53211136194a0159ae77160bf02fc1 to your computer and use it in GitHub Desktop.
bat simple question
[code:]bat[:code]
@echo off
:begin
set /p id="Enter: "
echo yours input: %id%
set /p exitVar="Enter 1 for exit: "
if %exitVar%==1 (
exit
) else (
Goto begin
)
[/code]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment