Mercurial > hg > cc > cirrus_work
diff bin/simpleJob.sh @ 47:b59f49909bda
sic
author | Henry S. Thompson <ht@inf.ed.ac.uk> |
---|---|
date | Thu, 06 Jul 2023 10:19:02 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/simpleJob.sh Thu Jul 06 10:19:02 2023 +0100 @@ -0,0 +1,11 @@ +#!/bin/bash +# Simple job runner: +# Usage: sbatch [slurm args] ~/simpleJob.sh script-name [script-args] + +#SBATCH --partition=standard +#SBATCH --qos=standard +#SBATCH --account=ec184-guest + +echo $(date) running "$@" + +srun "$@"