Skip to content

Instantly share code, notes, and snippets.

@larsvilhuber
Last active August 21, 2018 18:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save larsvilhuber/a59216eef7db29ceb29f4b593b85a86b to your computer and use it in GitHub Desktop.
Save larsvilhuber/a59216eef7db29ceb29f4b593b85a86b to your computer and use it in GitHub Desktop.
A template for QSUB on ECCO
#!/bin/bash -l
#PBS -N myjobname
#PBS -l ncpus=8
#PBS -l mem=32768mb
#PBS -j oe
#PBS -l walltime=00:10:00
#PBS -m ae
# The following line should ALWAYS be included
source /etc/profile.d/modules.sh
cd $PBS_O_WORKDIR
module load sas
sas myprog.sas
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment