Posted by SpywareDr on January 08, 2010 at 04:08:21:
In Reply to: dos script: avoid space at end-of-line posted by Rob Kromwijk on January 08, 2010 at 02:37:01:
Try removing the space between:
c >
in the line:
for /f "skip=3" %%c in (%~1) do @echo %%c >> %l_doelmap%\%~2.csv
Like this:
for /f "skip=3" %%c in (%~1) do @echo %%c>>%l_doelmap%\%~2.csv