kingjamesid has asked for the wisdom of the Perl Monks concerning the following question:
if ( @client > 1 ) { foreach my $client (@client) { print MYLOG "Working on Source: ",$srcMachine," and Client: " +,$client->[0], "\n"; if ( &isAlive( $client->[0] ) ) { print $$."\n"; my $job = Win32::Job->new(); print $job."\n"; my $job_result = $job->spawn(&startCopy( $srcMachine, $cli +ent->[0] )); die $^E unless (defined $job_result); #print $job_result; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Synchronous action
by SuicideJunkie (Vicar) on May 11, 2011 at 21:51 UTC | |
|
Re: Synchronous action
by locked_user sundialsvc4 (Abbot) on May 12, 2011 at 11:53 UTC | |
|
Re: Synchronous action
by believer (Sexton) on May 12, 2011 at 12:37 UTC | |
by kingjamesid (Acolyte) on May 12, 2011 at 17:18 UTC | |
by BrowserUk (Patriarch) on May 12, 2011 at 19:04 UTC | |
by kingjamesid (Acolyte) on May 16, 2011 at 14:24 UTC | |
by BrowserUk (Patriarch) on May 16, 2011 at 15:04 UTC | |
|