view bin/simpleJob.sh @ 285:0ec17b2aab72 default tip

fix GMT fix, %-encode utf8-bytes (which probably will open the door to all the other hacks in sort-date :-(
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Sat, 08 Mar 2025 22:31:14 +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 "$@"