|
How do I concatenate files using Windows (dos) copy?
It's something trivial, but sometimes you want to do it.
copy /b file1+file2 dest
Use the /b so windows knows it's a binary file. If you don't want the verification prompt
copy /y /b file1+file2 dest
|