in reply to Automatically running series of Perl programs
perl foo.pl param1 | perl bar.pl | perl tins.pl > final_result.txt [download]
perl -e 'print "test"' | perl -ne 'print "--$_"' | perl -ne 'print "$_ +-- \n"' > final_result.txt [download]