Dos User Input
From Fxp Wiki
How to prompt the user and get a keyboard input inside an msdos (ms-dos) batch file?
@echo off echo your choice ? y / n set /p Input= if /i "%Input%"=="y" (goto Proceed) REM if /i not "%Input%"=="y" (exit /b) exit /b :Proceed echo Proceed pause
Date: Apr/04/2008
Categories: Dos | Source Code | Programming | Batch
