#!/bin/csh
#
#  JVSRUN
#
#  This C-Shell script starts the T3E driver script "jeeves"
#  and sends standard out and standard error from "jeeves"
#  to appropriate files for status monitoring.
#
#  USAGE: jvsrun

# Location of "jeeves"
set BINDIR=/home/cazes/bin

# Location of status monitoring files.
set INFODIR=/home/cazes/info

# Create status monitoring files if they didn't already exist.
/bin/touch $INFODIR/outfile

# Start "jeeves" in the backgound and output standard out and error to "outfile"
$BINDIR/jeeves >>& $INFODIR/outfile &

  
echo "END JVSRUN"