batch file - How to answer the "Set /p choice" command on new line? -
code:
@set /p choice= how you?(answer here) @echo %choice%? @pause
desired output:
@set /p choice= how you? (answer here) @echo %choice%? @pause
yes, easy possible:
@echo off echo how you? set /p "choice=" echo %choice%? pause
Comments
Post a Comment