Advent-of-Code-Aggregator/2021/complete-benchmark
Felix Van der Jeugt b10de59f31
no octal numbers
2021-12-09 22:46:48 +01:00

30 lines
665 B
Bash
Executable file

#!/bin/sh
day="$1"
part="$2"
inputfile="$PWD/inputs/$(printf '%02d' "${day##0}").txt"
if ! test -f "$inputfile"; then
echo "no input available" >&2
exit 1
fi
for dir in *; do
if test -d "$dir"; then
cd "$dir"
if test -x ./prepare; then
echo "---------------------------------------------------------------------------------- $dir"
if ! ./prepare "$day" "$part" >&2; then
echo 'eh ge hebt precies niet alles geïnstalleerd staan'
else
if test -x run; then
hyperfine -n "$dir" "./run '$day' '$part' '$inputfile'"
fi
fi
fi
if test -x ./clean; then
./clean "$day" "$part" "$inputfile"
fi
cd - > /dev/null 2>&1
fi
done