#!/bin/ksh

if [ ${HOME:-x} = x ]; then export HOME=/users2/bill; fi
if [ ${EMPIREPORT:-x} = x ]; then EMPIREPORT=1617; fi
if [ ${EMPIREHOST:=x} = x ]; then EMPIREHOST=hpcvxst; fi
if [ ${EMPIREBASE:=x} = x ]; then EMPIREBASE=$HOME/games/empire; fi
if [ ${EMPIREDATA:=x} = x ]; then EMPIREDATA=$HOME/games/EMP; fi

#  Start emp_login and emp_tm.

$EMPIREBASE/POGO/killoff
echo Starting emp_login and emp_tm
$EMPIREBASE/EMP/bin/emp_login
$EMPIREBASE/EMP/bin/emp_tm
ps -ubill -a|grep "emp_"

