你怎么能在批处理文件中回显一个换行符?
你怎么能从你的批处理文件输出插入一个换行符?
我想要做一些事情:
> echo hellonworld
哪个会输出:
你好
世界
echo hello & echo.world
这意味着你可以定义& echo.
作为换行符的常量n
。
使用:
echo hello
echo.
echo world
在这里,创建一个.bat文件,其中包含以下内容:
@echo off
REM Creating a Newline variable (the two blank lines are required!)
set NLM=^
set NL=^^^%NLM%%NLM%^%NLM%%NLM%
REM Example Usage:
echo There should be a newline%NL%inserted here.
echo.
pause
你应该看到如下的输出:
There should be a newline
inserted here.
Press any key to continue . . .
显然,你只需要REM语句之间的代码。
链接地址: http://www.djcxy.com/p/30285.html