in reply to more questions about &run_parallel

Hmmm, I'd need to see the original run_parallel, I think.

Did you try using "2>&1"?

#!/usr/bin/perl -w use strict; my $x=`ls a.a 2>&1`; print "dollar x is $x\n"; print "***************\n";

That captures the stderr output nicely.

But I'm not sure this trick will work with whatever underlies your run_parallel subroutine.

Could you post a pointer to the node where you found it?
--
Mike

Replies are listed 'Best First'.
Re: Re: more questions about &run_parallel
by Capt_Howdey (Initiate) on Mar 19, 2002 at 06:43 UTC
    http://www.perlmonks.com/index.pl?lastnode_id=147112&node_id=28870