#!/bin/bash

#####################################################################
## Template for PBS Batch Script Generated by PBS Resource Manager
## Launch Tab
##
## This template has only a minimal set of attributes.  See
## the full_template for the complete placeholder set.
#####################################################################

#PBS -A @Account_Name@
#PBS -e @Error_Path@
#PBS -l nodes=@Resource_List.nodes@
#PBS -l walltime=@Resource_List.walltime@
#PBS -N @Job_Name@
#PBS -o @Output_Path@
#PBS -q @destination@
@env@
cd @directory@
@mpiCommand@ @mpiOptions@ @executablePath@ @progArgs@
