#QSUB -r  acetylene          # Batch job name
#QSUB -eo                    # This combines stderr & stdout
#QSUB -J m                   # Append job log to stdout
#QSUB -me                    # Email when job is finished
#QSUB -mu $user              # email address
#QSUB -s /bin/sh             # Execute this script with indicated shell
##QSUB -lT 0:51:00           # Request cpu time limit hr:min:sec
##QSUB -lM 63Mw              # Request memory limit
#QSUB -l mpp_p=1             # Request processor limit
set -x
# set
# setenv
GAMESS=/local/gamess
echo $QSUB_WORKDIR
cd $TMPDIR
pwd
df
INPUT=exam12.inp
cp $GAMESS/tests/$INPUT .
$GAMESS/gamess ./$INPUT
ls -al
cp * $QSUB_WORKDIR