Help for this page
#!/usr/bin/perl use Net::Ping; $p = Net::Ping->new('icmp'); print "She's workin\n" if $p->ping("ns.online.no"); $p->close();
zodiac:/home/perl# ./test1.pl She's workin zodiac:/home/perl#