How to append content of one textfile to another textfile using batchscript?

batch-file, text

Solution

The type command can be used to concatenate files. Try

type file1.txt >> file2.txt

Problem

How to create a simple batchscript in windows that will take the contents of one txt file and will append it to the end of another textfile

Original source