If the files are small in size, and you have a small number of them:
type file1.txt > out.txt type file2.txt >> out.txt type file3.txt >> out.txtIf you have a large number of large files, this might be a better option:
copy /b file1.dat+file2.dat+file3.dat out.dat /bor:
copy /b *.dat out.dat /b