13 lines
179 B
Makefile
13 lines
179 B
Makefile
|
#!/usr/bin/env -S just --justfile
|
||
|
|
||
|
DAY := `date +%d`
|
||
|
|
||
|
new:
|
||
|
cp python/_sample.py python/day{{ DAY }}.py
|
||
|
touch full/day{{ DAY }}.txt
|
||
|
touch samples/day{{ DAY }}.txt
|
||
|
|
||
|
|
||
|
|
||
|
|