You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
407 B
Bash
10 lines
407 B
Bash
#!/bin/sh
|
|
# AOC_SESSION_COOKIE="samplecookie" ./fetchinput.sh 13
|
|
|
|
# defaults to current day unless specified day is passed in
|
|
DAY=`date +%d`
|
|
! [ "$1" = "" ] && printf "%d" $1 >/dev/null 2>&1 && DAY=$1
|
|
|
|
[ "$AOC_SESSION_COOKIE" = "" ] && echo "\$AOC_SESSION_COOKIE not set" && exit 1
|
|
curl -i https://adventofcode.com/2022/day/$DAY/input --cookie "session=$AOC_SESSION_COOKIE" -o day`printf "%02d" $DAY`/input
|