#!/bin/sh

# WIDE AREA INFORMATION SERVER SOFTWARE:
#   No guarantees or restrictions.  See the readme file for the full standard
#   disclaimer.
#
# Script for checking all source in a directory to see if they are alive.
# This is useful for a system administrator.  If an advertized server is
# down consistently, please notify the maintainer and the maintainer of the
# directory of servers that the source came from.  (the master directory of
# servers is maintained by brewster@think.com)
#
# $Log:	waisping,v $
# Revision 1.0 warnock
# resurrected from waisq
# 
#

if (test $# -ne 1)
then
	echo "usage: $0 <wais-source-name>"
	echo "  Checks the source to see if it is responding to WAIS requests."
	exit 1
fi

 waisq -t $1




