Skip to content
Snippets Groups Projects
Commit 6f9e26a5 authored by John-Paul Robinson's avatar John-Paul Robinson
Browse files

Add output arg to job submit to pass dir target for list ouput

Pass the output are to the sbatch via env params.
parent 403ec118
No related branches found
No related tags found
1 merge request!2Feat parsable file names
......@@ -10,9 +10,10 @@ ram=$5
partition=$6
filesystem=${7:-scratch}
time=${8:-60}
outfile=${9}
DIR=$outdir POLICYFILE=$policy FILESYSTEM=${filesystem} && \
DIR=$DIR POLICYFILE=$POLICYFILE FILESYSTEM=${FILESYSTEM} \
DIR=$outdir POLICYFILE=$policy FILESYSTEM=${filesystem} OUTFILE=${outfile} && \
DIR=$DIR POLICYFILE=$POLICYFILE FILESYSTEM=${FILESYSTEM} OUTFILE=${OUTFILE} \
sbatch \
-N $nodes \
-c $cores \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment