#!/bin/tcsh -f # name of the job #PBS -N myjob # I am asking 1 node and 1 core from one of the # xt21,xt22,xt23,xt24,xt25 execution nodes # #PBS -l nodes=1:ppn=1 # The directive below directs that the standard output and # error streams are to be merged, intermixed, as standard # output. #PBS -j oe # Specify the queue #PBS -q serial #set path of my executable # In this example myexe.exe is my executable # and mydir is my subdirectory where myexec.exe and data files exist # cd $HOME/mydir/ ./myexe.exe