in reply to How to Run Script for Multiple Files in Parallel?

I've used a technique like the following.
Mind you I only have 3-5 copies running each
taking between 1 and 3 hours under cron.

#!perl if (<some parameter not set>) { <set up environment etc> foreach (@somesortoflist) { system(<thisscript><withparameter><&>); } exit; } <remainder of script>