aboutsummaryrefslogtreecommitdiff
path: root/day04/entrypoint
blob: 3a5d4de1f6ff820fc51bdd9f147871728c14b367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

if [ -x part1 ] ; then
	echo -ne "Part 1:\n\t"
	time ./part1
fi
if [ -x part1 -a -x part2 ] ; then
	echo
fi
if [ -x part2 ] ; then
	echo -ne "Part 2:\n\t"
	time ./part2
fi