mirror of
https://github.com/Crocmagnon/advent-of-code.git
synced 2024-11-05 14:23:58 +01:00
15 lines
275 B
Text
15 lines
275 B
Text
|
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
|
||
|
if [[ $# -ne 2 ]]; then
|
||
|
>&2 echo "Usage: $0 <number> <python_module_name>"
|
||
|
exit 2
|
||
|
fi
|
||
|
|
||
|
filename=day$1_$2.py
|
||
|
cp template.py $filename
|
||
|
sed -e "s/dayXX/day$1/g" -i "" ./$filename
|
||
|
mkdir -p inputs
|
||
|
touch inputs/day$1
|
||
|
touch inputs/day$1-test1
|