I need to create a script, which concatenates multiple text files into one. I know it\'s simple to use
type *.txt > merged.txt
But the require
At its most basic, concatenating files from a batch file is done with 'copy'.
copy file1.txt + file2.txt + file3.txt concattedfile.txt