I have written a bash script which inturn needs to run around 130 Perl scripts.
#!/bin/bash
perl file1.pl &
perl file2.pl &
perl file3.pl &
....
....
perl file130.pl &
The above bash script is configured in the cron to run after every 10 minutes. Is there any other way in which we can run all these 130+ perl scripts at a time ?