Skip to main content

5.14) Simple Example Submission Scripts


A simple serial job, i.e. single core, submission script serial.sh can look like:

[bash]
#!/bin/bash
# Use current working directory and export environment
#$ -cwd -V
# Request 1 hour of runtime
#$ -l h_rt=1:00:00
./myprog
[/bash]

This can then be submitted with:

$ qsub serial.sh