changeset 47:b59f49909bda

sic
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Thu, 06 Jul 2023 10:19:02 +0100
parents 44d3a4f4ea51
children d0d2fd9830d6
files bin/simpleJob.sh
diffstat 1 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/simpleJob.sh	Thu Jul 06 10:19:02 2023 +0100
@@ -0,0 +1,11 @@
+#!/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 "$@"