#!/bin/bash #$ -cwd #$ -S /bin/bash # Redirect standard error output #$ -e /home/kdaily/bitpres/errorlog.$JOB_NAME # Redirect program output #$ -o /home/kdaily/bitpres/outputlog.$JOB_NAME # Set program requirements of the machines to use # using only linux architecture and at least 2Gb of free memory #$ -l arch=lx24-x86 #$ -l mem_free=2G # Set the queue to use #$ -q chem_cluster.q source /home/kdaily/.bashrc date # Execute the actual command echo Executing ${JOB_ID} running from ${HOSTNAME} echo "Hello World!" date