in reply to Net::Ping just don't werk
Works fine! HOWEVER#!/usr/bin/perl use Net::Ping; $p = Net::Ping->new('icmp'); print "She's workin\n" if $p->ping("ns.online.no"); $p->close();
Will not!#!/usr/bin/perl use Net::Ping; $p = Net::Ping->new(); print "She's workin\n" if $p->ping("ns.online.no"); $p->close();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: Net::Ping just don't werk
by geektron (Curate) on Nov 02, 2000 at 05:47 UTC |