Windows “cat” equivelant
by Craig Mayhew on Apr.18, 2010, under General/Techie
If you need to concatenate several files on a windows system the command is as follows:
“copy /B filePart1 + filePart2 + filePart3 outFileName”
The /B indicates the files are binary files.