Reputation: 4687
I need to create multiple line prompt.
set /p choice="Press '1' for start host; Press '0' for exit;"
Output should be:
Press '1' for start host;
Press '0' for exit;
How it is possible?
Upvotes: 0
Views: 1524
Reputation: 79983
Echo Press '1' for start host;
set /p choice="Press '0' for exit;"
is probably simplest
Upvotes: 5