#!/bin/csh #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 ncpus=1,nodes=ppn=1,mem=1GB,walltime=HH:MM:SS ### Queue name #PBS -q aquila # 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