you can run system on threads like this:
use threads; my @thr = (); for my $i (1..5) { push @thr, threads->create('run_command'); } for my $t (@thr) { $t->join } sub run_command { system("DoThis.exe"); }
Working with 5.10 on Windows.
-- Roman
In reply to Re: Parallel Processing
by bobr
in thread Parallel Processing
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |