in reply to Appending multiple files into one or more files

You may use some simple shell-commands:

cat 1*.txt >> AppendFile_1.txt cat 2*.txt >> AppendFile_2.txt

Of course you can write a Perl-script for generating and executing the cat commands...

HTH, Rata