Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: using Backtick inside perl gives different output

by jwkrahn (Abbot)
on Oct 07, 2013 at 23:33 UTC ( [id://1057328]=note: print w/replies, xml ) Need Help??


in reply to using Backtick inside perl gives different output

Another way to do it:

#!/usr/bin/perl use strict; use warnings; open my $cmd, '-|', '/usr/sbin/ntpq', '-p' or die "Cannot open pipe fr +om ntpq because: $!"; while ( <$cmd> ) { my $offset = ( split )[ 8 ]; print "$offset\n" if /^\*/; } close $cmd or warn $! ? "Error closing ntpq pipe: $!" : "Exit status $? from ntpq";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1057328]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-26 00:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found