From a8cd3d4527e064590827771a92fc921fc378607b Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Sat, 2 Dec 2023 23:13:00 -0500 Subject: [PATCH] justfile fix --- 2023/justfile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/2023/justfile b/2023/justfile index ca18851..4053d90 100644 --- a/2023/justfile +++ b/2023/justfile @@ -7,7 +7,16 @@ new: touch full/day{{ DAY }}.txt touch samples/day{{ DAY }}.txt -run: +full: /usr/bin/env python3 python/day{{ DAY }}.py - +sample: + /usr/bin/env python3 python/day{{ DAY }}.py --sample + +ws: + watch /usr/bin/env python3 python/day{{ DAY }}.py --sample + +watch: + watch /usr/bin/env python3 python/day{{ DAY }}.py + +