#!/bin/sh
#This script tests if a tas server is present and returns an IP addy
# if there is one
# if this does not reply try rrlms or RRclient on www.bebits.com
# or beware archive.


alert "This is a Bash script to test to see if you can 
benefit from RRlogin. If a window comes up and
reads 32  bytes from XXX.XXX.XXX.XXX 
sequence 1 round- trip-time X.X msecs RRlogin will
work for you! Otherwise it's unlikeley." "Test Me!"

answer=`ping -c 1  tas`
#if [ "$answer"  !=  "ping: tas: unknown host" ]; then
	alert  "$answer" "Cool"
fi
done


