When I use the DOS Copy command to copy multiple files into one file the result always has an extra blank line (cursor return line feed) at the end. How do I avoid creating this blank line?

link|improve this question
feedback

1 Answer

You could try using binary mode to see if it gives you the result you need:

COPY /B file1 + file2 dest
link|improve this answer
Wanted to add, I had a similar problem and this worked for me. – Shane Mar 24 at 13:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.