in reply to Re: Re: Re: Redirecting OUTPUT of system($command) to an array
in thread Redirecting OUTPUT of system($command) to an array

I just implemented this line:
my $pid = open my $sys, "-|", $command or die $!;
And.... It work Gloriously!!!!
Thanks for all your help!!!

Replies are listed 'Best First'.
Re^5:Redirecting OUTPUT of system($command) to an array
by Nkuvu (Priest) on May 13, 2004 at 19:29 UTC
    Yep, the two solutions here (using backticks or using open) aren't meant to be combined...