in reply to Re: Net:Ping HELP!
in thread Net:Ping HELP!
sorry i should have posted the actual script. here it is. It is being run as root on a FreeBSD 4.7 box.
It takes about 1 second to run this script, but then I get no output at all.
#!/usr/bin/perl -w use strict; use Net::Ping; my $host = "127.0.0.1"; my $ping=Net::Ping->new(); while ($ping->ping($host,1)) { print "down\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Net:Ping HELP!
by JamesNC (Chaplain) on May 29, 2003 at 05:24 UTC | |
by daeve (Deacon) on May 29, 2003 at 07:31 UTC | |
by Anonymous Monk on May 29, 2003 at 07:44 UTC |