Может кто-нибудь объяснить, как это работает?
@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.
испускает:
There should be a newline
inserted here.
from Как вы можете повторить новую строку в пакетных файлах?