#!/bin/bash #the '-pe pvm 4' qsub option specifies that 4 processors should be run in parallel using pvm. if [ $# -lt 1 ]; then echo "You must provide a name for your job." exit -1 fi export job=$1 export user=$USER qsub -N poy-${job} \ -M ${user}@umsl.edu \ -m e \ -o `pwd`/poy-${job}.out \ -e `pwd`/poy-${job}.err \ -pe pvm 4 \ <<-QSUBINPUT #!/bin/bash cd `pwd` poy -parallel