用:
echo hello
echo.
echo world
echo hello & echo.world
这意味着您可以定义& echo.
作为换行符的常量\n
。
在这里,创建一个. 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 语句之间的代码。