view bin/simpleJob.sh @ 114:5818d79c4ec9

a few more from ecclerig, comment out some duplicates
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Tue, 26 Sep 2023 14:18:40 +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 "$@"