in reply to capturing output of backticks in child process... or something completely different
The following code has been posted here before.
#!/usr/bin/perl use 5.010; use strict; use warnings; use Parallel::ForkManager; #use Data::Printer; my $pm = Parallel::ForkManager->new(2); $pm->run_on_finish( sub { # result from the child will be passed as 6th arg to callback my $res = $_[5]; # p $res; print "$res\n"; } ); for (1..3) { $pm->start and next; # from here and till $pm->finish child process running # do something useful and store result in $res my $res = { aaa => $_ }; # this will terminate child and pass $res to parent process $pm->finish(0, $res); } $pm->wait_all_children;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: capturing output of backticks in child process... or something completely different
by abualiga (Scribe) on May 29, 2014 at 22:58 UTC |