AdventOfCode2024/today.sh

21 lines
587 B
Bash
Raw Permalink Normal View History

2024-11-03 19:29:28 +00:00
#!/bin/bash
__year=2024
__day="${1}"
if [ "${day}" == ""]; then
__day=$(date '+%d')
fi
padded=$(printf "%02g" ${__day})
mkdir -p ${padded}/inputs
touch ${padded}/inputs/testinput
if [ ! -f "${padded}/inputs/input" ]; then
curl -s \
-A "https://git.yetaga.in/alazyreader/AdventOfCode${__year}/" \
-H "Cookie: session=`cat .cookie`" https://adventofcode.com/${__year}/day/${__day##0}/input > "${padded}/inputs/input"
fi
# if [ ! -f "${padded}/main.go" ]; then
# cp -n main.go.tmpl ${padded}/main.go
# fi
open "https://adventofcode.com/${__year}/day/${__day}"