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

c# - Where does the .ToList() go in LINQ query result -

android - CollapsingToolbarLayout: position the ExpandedText programmatically -

Listeners to visualise results of load test in JMeter -