From 423d2bcb74df7290d2d7e8d3d4aaea278cd1e98b Mon Sep 17 00:00:00 2001 From: Nat Lasseter Date: Mon, 2 Dec 2019 12:58:09 +0000 Subject: Day 02, though it's not going to sclae whell when we add more instructions! --- day02/entrypoint | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 day02/entrypoint (limited to 'day02/entrypoint') diff --git a/day02/entrypoint b/day02/entrypoint new file mode 100755 index 0000000..8982d21 --- /dev/null +++ b/day02/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 -- cgit v1.2.3