Hey there again!
So I need to be able to write two lines using only one echo in batch.
sort of like \n in java. I also read about using Alt+1+0 but that didn't work.
here's an example of what i am trying to do.
-----------------------------------------------------------------------------
@echo off
set test=This should be the first line. [some command] This should be the second line.
goto next
:next
echo %test%
pause
--------------------------------------------------------------------------------------
Output should be:
This should be the first line.
This should be the second line.
Click any key to continue...
