I need to concatenate some relatively large text files, and would prefer to do this via the command line. Unfortunately I only have Windows, and cannot install new software.
more +2 file2.txt > temp type temp file1.txt > out.txt
or you can use copy. See copy /? for more.
copy
copy /?
copy /b temp+file1.txt out.txt