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
You can do it using type:
type"C:\\*.txt"> merged.txt
all the files in the directory will be appendeded to the file merged.txt.
merged.txt