3

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?

phuclv
  • 30,396
  • 15
  • 136
  • 260
Arden
  • 31

1 Answers1

5

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

COPY /B file1 + file2 dest