view bin/hdr.sh @ 60:ff4e85d8ec31

switch for use on login server, invoke by hand with 0/1 as only cmd line arg
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Thu, 23 Apr 2020 17:25:25 +0100
parents 9a1de2c4ffe3
children
line wrap: on
line source

#!/usr/bin/bash
echo $(date) $(hostname)
h=$(hostname)
hn=${h##*n}
if [ $hn -eq 0 ]
then seq --format="%03.0f" $1 $2
else seq --format="%03.0f" $3 $4
fi |\
parallel --will-cite -j 48 -N 1 bin/doHdr.sh ${hn} '{#}' '{}'
echo $(date) $(hostname) $?