I am trying to replace a certain character found in convert.txt. Now, every characters found in convert.txt will replace into a linefeed in a file.
I have this code:
for /f "delims=" %%s in (convert.txt) do (
Type c:\PETER\%%a | repl.bat "\%%s" "%%s\n" X > c:\PETER\%%a
)
I tried to use the replace.bat suggestion on this page see here. Now, when I am trying to replace a large file's character into a line feed, the output is not complete. Do we have a limit on this case?