view bin/simpleJob.sh @ 154:5d30cd8c6254

fix typo
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Wed, 11 Oct 2023 12:50:29 +0100
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 "$@"