batch file variables input code example
Example 1: batch script arguments
@echo off
echo %1
echo %2
echo %3
Example 2: batch input variable
set /p Input=Enter some text:
@echo off
echo %1
echo %2
echo %3
set /p Input=Enter some text: