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

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

android - CollapsingToolbarLayout: position the ExpandedText programmatically -

Listeners to visualise results of load test in JMeter -