windows - Any command-line or batch cmd to concatenate multiple files? - Super User
Assuming you are talking about appending text files, the 'copy' command can be used to append them together. copy file1+file2+file3 targetfile If you have a lot of files, you could loop by appending one file at a time. Its been some time since I used DOS ...