windows - Make a line break when requesting user input (/P) in batch? -
is possible create line break after set /p
command? user able type on new (blank) line instead of next existing prompt. example:
set /p test=type echo %test%
this code lets user type next prompt.
if want input on following line, use:
echo type set /p test= echo %test%
the echo
output prompt including newline, use set /p
no prompt.
Comments
Post a Comment