I'm trying to merge a lot of archives in one, with WinXP - CMDWith copy *.txt /O myfile.salMy problem is I have 2 files, a1.txt and a2.txta1.txt123a2.txtabcThe result is123abcI need to insert a carriage RETURN between 3 and aIs it possible?ThanksLuisthis MAY work:Code: [Select]for /f %%a in ('dir /B *.txt') do (type %%a >>myfile.salecho.>>myfile.sal)Perfect!THANK yo so much!Luis
Your experience on this site will be improved by allowing cookies. Read Cookie Policy