diff options
author | Nat Lasseter <user@4574.co.uk> | 2019-10-27 23:40:26 +0000 |
---|---|---|
committer | Nat Lasseter <user@4574.co.uk> | 2019-10-27 23:40:26 +0000 |
commit | 11d885209c61828b6fc15815c04cf8556be70fe8 (patch) | |
tree | 87a4973803b0b4bb5d8b92bb294f16f02148e733 /day16/entrypoint | |
parent | 487c3425a23ef52c6de3c045f1110d5e7342d042 (diff) |
day16, part1, and whodawhatnow not working
Diffstat (limited to 'day16/entrypoint')
-rwxr-xr-x | day16/entrypoint | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/day16/entrypoint b/day16/entrypoint new file mode 100755 index 0000000..8982d21 --- /dev/null +++ b/day16/entrypoint @@ -0,0 +1,13 @@ +#!/bin/bash + +if [ -x part1 ] ; then + echo -ne "Part 1:\n\t" + time ./part1 < input +fi +if [ -x part1 -a -x part2 ] ; then + echo +fi +if [ -x part2 ] ; then + echo -ne "Part 2:\n\t" + time ./part2 < input +fi |