view bin/simpleJob.sh @ 217:c15cef19b584

tld change investigation
author Henry Thompson <ht@markup.co.uk>
date Fri, 16 Feb 2024 16:24:28 +0000
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 "$@"