From 8e82f6245e58c7553625273a181a6b045df01272 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Tue, 28 Nov 2023 15:27:44 +0000 Subject: [PATCH] Improved run scripts --- 2022/run | 3 --- 2022/run_day | 3 +++ README.md | 11 +++++++++++ 3 files changed, 14 insertions(+), 3 deletions(-) delete mode 100755 2022/run create mode 100755 2022/run_day diff --git a/2022/run b/2022/run deleted file mode 100755 index 21014a4..0000000 --- a/2022/run +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -python src/day$1.py \ No newline at end of file diff --git a/2022/run_day b/2022/run_day new file mode 100755 index 0000000..cd99341 --- /dev/null +++ b/2022/run_day @@ -0,0 +1,3 @@ +#!/bin/bash + +python3.10 run src/day$1.dart $2 $1 \ No newline at end of file diff --git a/README.md b/README.md index e69de29..c1bbea7 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,11 @@ +# Create new day script + +``` +./new_day +``` + +# Run script + +``` +./run_day +```