Dec 07 2011
Merge Files in DOS
You can easily concatenate ascii or binary files with the Windows command prompt using COPY:
COPY /A file1.txt+file2.txt dest.txt
COPY /B file1.bin+file2.bin dest.bin
Where dest is the destination filename
Dec 07 2011
You can easily concatenate ascii or binary files with the Windows command prompt using COPY:
COPY /A file1.txt+file2.txt dest.txt
COPY /B file1.bin+file2.bin dest.bin
Where dest is the destination filename