AdventOfCode2021/new.sh

8 lines
143 B
Bash
Raw Normal View History

2021-11-30 23:51:56 +00:00
#!/bin/bash
if [ "${1}" != "" ]; then
2021-12-01 00:14:48 +00:00
mkdir -p ${1}/inputs
touch ${1}/inputs/{input,testinput}
2021-11-30 23:51:56 +00:00
cp -n main.go.tmpl ${1}/main.go
fi