in reply to do is not doing it!

Perhaps you want to use the backtick operator instead of do, as do will evaluate /usr/local/bin/pingtest.pl not execute it (similar but not the same). So you'll probably want something like this
my @values = `/usr/local/bin/pingtest.pl`; chomp @values; # get rid of tricky newlines

HTH

broquaint

Replies are listed 'Best First'.
Re: Re: do is not doing it!
by cybear (Monk) on Apr 12, 2002 at 13:23 UTC
    My thanks to you. K - I - S - S, right?