Hello i want to merge 3 text files line by line using batch file. The lines contains specials char. and spaces. if file has only one line the code below works but if we have multiline text ti doesnt Because the resault is:
1stline1stline 1stline2stline 2stline1stline 2stline2stline Example code
@echo off
for /f "delims=" %%a in (a.txt) do (
for /f "delims=" %%b in (b.txt) do (
>>c.txt echo %%a %%b
)
)