[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ping



#!/bin/sh
if [ $# != 2 ]; then echo "usage: $0 <host>"; exit; fi
ping -c 1 $1
if [ $? == 0 ]
then
 echo $0 is alive.
else
 echo $0 is not answering (to ICMP echo-request).
fi

Noam Meltzer <tsnoam@zahav.net.il> wrote:
> Hi!
> I know that on Solaris the output of "ping" is "<host> is alive" or 
> "service not avaiable" (or something like that)
> i was wandering how i can achieve such answer in linux.
> 
> noam
> 
> 
> =================================================================
> To unsubscribe, send mail to linux-il-request@linux.org.il with
> the word "unsubscribe" in the message body, e.g., run the command
> echo unsubscribe | mail linux-il-request@linux.org.il

-- 
http://www.rshell.org
Join #shellcode on EFnet.
rasta@rshell.org

=================================================================
To unsubscribe, send mail to linux-il-request@linux.org.il with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail linux-il-request@linux.org.il