Re: pull results out of a variable

2016-09-28 Thread Brandon Allbery
On Wed, Sep 28, 2016 at 5:15 PM, Nex6 via perl6-users wrote: > my $results = run 'ping', '-c', '1',$line; > > where $line is the IP address, $results hold the result how can i pull the > results out? it outputs like this: > Actually, it doesn't have them with that

pull results out of a variable

2016-09-28 Thread Nex6 via perl6-users
Hi all, just starting my journey down Perl6, figured best way to learn it is to write stuff so i am do some stuff I have done in other languages. as ideas for what to write. first a ping sweep; problem is: if i: my $results = run 'ping', '-c', '1',$line; where $line is the IP address,