in reply to Automatically running series of Perl programs

can't you use something like this?
perl foo.pl param1 | perl bar.pl | perl tins.pl > final_result.txt
like:
perl -e 'print "test"' | perl -ne 'print "--$_"' | perl -ne 'print "$_ +-- \n"' > final_result.txt