view bin/simpleJob.sh @ 129:83a574b570a6

move most of the hacking into fixGoogleCanon, which copies most but changes some of surt.GoogleURLCanonicalizer
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Thu, 28 Sep 2023 16:34:49 +0100 (17 months ago)
parents b59f49909bda
children
line wrap: on
line source
#!/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 "$@"