Mercurial > hg > cc > cirrus_work
comparison 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 |
comparison
equal
deleted
inserted
replaced
46:44d3a4f4ea51 | 47:b59f49909bda |
---|---|
1 #!/bin/bash | |
2 # Simple job runner: | |
3 # Usage: sbatch [slurm args] ~/simpleJob.sh script-name [script-args] | |
4 | |
5 #SBATCH --partition=standard | |
6 #SBATCH --qos=standard | |
7 #SBATCH --account=ec184-guest | |
8 | |
9 echo $(date) running "$@" | |
10 | |
11 srun "$@" |