A one-liner
perl -ne"print qx[perl -pe1 $_]" test.lst > test.all
Where test.lst contains the list of files 1 per line and their contents is concatenated into test.all
Update: This is a better one that avoids using large amounts of memory for large files:
perl -ne"system 'perl.exe', '-pe1', $_;" test.lst >test.all
In reply to Re: appending files
by BrowserUk
in thread appending files
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |