home *** CD-ROM | disk | FTP | other *** search
- #%DESCRIPTION%|=|Pings specified host using shell's "ping <hostname>" command
- #%HOST%|?|watznew.com|Enter host name or IP address
- #%TITLE%|=|PING #%HOST%
- #%MESSAGE%|=|%1
-
- # ------------------------------------------------------------------------------
- # PING script by A.I.Studio / Igor Afanasyev
- # ------------------------------------------------------------------------------
-
- require 'strings.lib'; # string routines
-
- # ------------------------------------------------------------------------------
-
- $host = $ENV{'HOST'};
-
- # ------------------------------------------------------------------------------
-
- $s = `ping $host`;
- $s = &ProcessDosResponse($s);
- print "MSG: $s\n";