#!/bin/sh
#
# eustis -- start a ssh shell on eustis.eecs.ucf.edu
#
[ -n "$echo" ] && set -x

: ${FARMACHINE='eustis.eecs.ucf.edu'}
: ${ME='gleavens'}
USAGE='eustis'

# no options allowed
case "$1" in
-*)
	echo "$USAGE" >&2
	exit 2
	;;
esac

exec ssh -l "$ME" "$FARMACHINE"



