#!/bin/sh
if [ -f idss ]; then cd classes; fi;
if [ -f IDSTest.class ]; then
	CLASSPATH=.:$CLASSPATH
	export CLASSPATH
	echo java IDSTest $*
	java IDSTest $*
	exit
fi;
echo You must run this command file with the IDS Server installation
echo directory as your current directory.
