I would like to do
svn commit -m \"\"
But message should have two lines:
Commit by: firstuser
Bug track: 92
Additional example to @jeb's answer
answer:
set br= ^
<>
<>
example:
@echo off
setlocal enableExtensions enableDelayedExpansion
rem cd /D "%~dp0"
set br= ^
rem br, can't be saved to a var. by using %..%;
set "t=t1!br!t2!br!t3"
for /f "usebackq tokens=* delims=" %%q in ('!t!') do (
echo %%q
)
:scIn
rem endlocal
pause
rem exit /b
; output:
t1
t2
t3
Press any key to continue . . .