Sample Torque jobscript for a sequential job #!/bin/csh ### Job name #PBS -N MyJobName ### Join queuing system output and error files into a single output file #PBS -j oe ### Send email to user when job ends or aborts #PBS -m ae ### email address for user #PBS -M Your-email-Address ### Queue name that job is submitted to #PBS -q corvus ### Request nodes, memory, walltime. NB THESE ARE REQUIRED #PBS -l ncpus=1 #PBS -l mem=Xmb,vmem=Ymb #PBS -l walltime=HH:MM:SS # 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` # Load module(s) if required module load application # Run the executable ApplicationExe+Arguments