generated from lukewilliamboswell/aoc-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_all.sh
executable file
·44 lines (31 loc) · 837 Bytes
/
run_all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
# https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
set -euxo pipefail
# 2020
roc test 2020/01.roc
roc 2020/01.roc < input/2020_01.txt
# 2021
roc test 2021/01.roc
roc 2021/01.roc < input/2021_01.txt
roc test 2021/02.roc
roc 2021/02.roc < input/2021_02.txt
roc test 2021/03.roc
roc 2021/03.roc < input/2021_03.txt
# 2022
roc test 2022/01.roc
roc 2022/01.roc < input/2022_01.txt
roc test 2022/02.roc
roc 2022/02.roc < input/2022_02.txt
# 2023
roc test 2023/01.roc
roc 2023/01.roc < input/2023_01.txt
# roc test 2023/02.roc
roc 2023/02.roc < input/2023_02.txt
roc test 2023/03.roc
roc 2023/03.roc < input/2023_03.txt
roc test 2023/04.roc
roc 2023/04.roc < input/2023_04.txt
roc test 2023/05.roc
roc 2023/05.roc < input/2023_05.txt
roc test 2023/09.roc
roc 2023/09.roc < input/2023_09.txt