view bin/simpleJob.sh @ 264:7886d7de5eed default tip

use cdb library directly, sequestration of cdb handle complete and working, nndb counts two loops now, one with and one without counting successes
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Fri, 31 Jan 2025 13:31:02 +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 "$@"