User Tip #98: Merging files using commandline copy
Hits:
Failed to execute CGI : Win32 Error Code = 3
Lets say you have file1.txt, file2.txt, and file3.txt which you want to merge into a single file named bigfile.txt. The copy command syntax is :
copy file1.txt+file2.txt+file3.txt bigfile.txt
With wildcards its
copy file?.txt bigfile.txt