You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
385 B
21 lines
385 B
@echo off
|
|
setlocal
|
|
|
|
:: Ask whether to repeat number groups
|
|
set /p repeat="Do you want to repeat number groups (y/N)? "
|
|
|
|
:: Check user input and apply the -r flag if necessary
|
|
if /i "%repeat%"=="y" (
|
|
echo Repeating number groups with the -r flag.
|
|
numberstation.exe -r
|
|
) else (
|
|
echo Not repeating number groups.
|
|
numberstation.exe
|
|
)
|
|
|
|
:: Pause before exit
|
|
pause
|
|
|
|
endlocal
|
|
|