use bash instead of shell

seems to help keep the output of the parallel scripts consistent
This commit is contained in:
rick 2015-09-21 13:40:06 -06:00
parent b3a8eabab7
commit b85954d511

@ -58,4 +58,4 @@ fi
for file in "${testfiles[@]}"; do
echo "0$(cat .$(basename $file).time 2>/dev/null || true) $file"
done | sort -rnk1 | awk '{ print $2 }' | xargs -I % -P $parallel -n 1 /bin/sh -c % --batch
done | sort -rnk1 | awk '{ print $2 }' | xargs -I % -P $parallel -n 1 /bin/bash % --batch