Advent of Code Solutions
advent-of-code aoc
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

run.sh: Exit script if run with less than two arguments

yemou 513944c4 37c9375f

+5
+5
run.sh
··· 10 10 "\t-r - use the real input instead of the test input" 11 11 } 12 12 13 + [ $# -lt 2 ] && { 14 + usage 15 + exit 1 16 + } 17 + 13 18 year=$1 14 19 day=$2 15 20 shift 2