xiº
xiº

Reputation: 4687

Multiline prompt in batch file

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

Answers (1)

Magoo
Magoo

Reputation: 79983

Echo Press '1' for start host;
set /p choice="Press '0' for exit;"

is probably simplest

Upvotes: 5

Related Questions