I am trying to get 3 batch files to run in parallel. I am using perl with system commands:
if (-e $Path . $batchs1 && -e $sPath . $batch2 && -e $Path . $batchs3 ){
system($Path . $batch1);
system($Path . $batch2);
system($Path . $batch3);
Only problem here is that it processes them one at a time and does not start the next batch until the previous one finishes.
Perhaps theres a way to do this with a batch file and I can trigger it from perl to start the three?
Thanks!
Start Free Trial