How to insert a newline in batch file output?
I want to do something like:
echo hello\nworld
Which would output:
hello world
echo hello & echo.world
This means you could define & echo. as a constant for a newline \n.
& echo.
\n