Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
823 views
in Technique[技术] by (71.8m points)

batch-file - 如何在批处理文件中回显换行符?(How can I echo a newline in a batch file?)

How can you you insert a newline from your batch file output?

(你怎么能从批处理文件输出中插入换行符?)

I want to do something like:

(我想做的事情如下:)

echo hello
world

Which would output:

(哪个会输出:)

hello
world
  ask by Brian R. Bondy translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use:

(使用:)

echo hello
echo.
echo world

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...