#!/bin/sh #PBS -V ### Job name #PBS -N MyJobName ### Output files #PBS -j oe ### Mail to user #PBS -m ae ### Mail address for user #PBS -M Your-email-Address ### Request nodes : NOTE This is REQUIRED #PBS -l nodes=1,walltime=HH:MM:SS ### Queue name #PBS -q titan # This job's working directory echo Working directory is $PBS_O_WORKDIR cd $PBS_O_WORKDIR echo Running on host `hostname` echo Time is `date` # Run the executable MyProgram+Arguments