Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- HOST=YOUR_IP_OR_HOSTNAME_HERE
- PING=`ping -q -c 1 $HOST`
- if [[ $? -eq 0 ]] ; then
- TIME=`echo $PING |tail -1 | cut -d/ -f 5`
- echo ${TIME}ms away from home
- exit 0
- else
- echo home could not be reached
- exit 2
- fi
Advertisement
Add Comment
Please, Sign In to add comment