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 +```