curtisb has asked for the wisdom of the Perl Monks concerning the following question:
use Net::Ping; use strict; my $host="10.6.1.107"; my $p=Net::Ping->new(); print "$host is alive\n" if $p->ping($host); $p->close(); $p=Net::Ping->new("tcp");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(Ovid) Re: Net::Ping and printing?
by Ovid (Cardinal) on Jan 12, 2002 at 02:42 UTC | |
|
(tye)Re: Net::Ping and printing?
by tye (Sage) on Jan 12, 2002 at 02:43 UTC |