is there any way that batch file in windows can save and use user's input in command like:
"
What's your name? Joe
Hello Joe!
"
thanks!
is there any way that batch file in windows can save and use user's input in command like:
"
What's your name? Joe
Hello Joe!
"
thanks!
echo What's your name?
set /p name=
echo Hallo %name%!