mirror of
https://github.com/ZeusWPI/Advent-of-Code-Aggregator.git
synced 2024-11-21 14:41:10 +01:00
20 lines
339 B
Bash
Executable file
20 lines
339 B
Bash
Executable file
#!/bin/sh
|
|
day="$(printf '%02d' ${1##0})"
|
|
part="$2"
|
|
inputfile="$PWD/../inputs/${day}.txt"
|
|
|
|
[ -x "prepare" ] || exit 0
|
|
|
|
if ! ./prepare "$day" "$part"; then
|
|
echo 'eh ge hebt precies niet alles geïnstalleerd staan'
|
|
else
|
|
if [ -x "run" ]; then
|
|
hyperfine "./run '$day' '$part' '$inputfile'"
|
|
fi
|
|
fi
|
|
|
|
if [ -x "clean" ]; then
|
|
./clean
|
|
fi
|
|
|
|
true
|