]> www.fi.muni.cz Git - aoc.git/commitdiff
get.sh: user-agent added
authorJan "Yenya" Kasprzak <kas@fi.muni.cz>
Thu, 1 Dec 2022 08:18:46 +0000 (09:18 +0100)
committerJan "Yenya" Kasprzak <kas@fi.muni.cz>
Thu, 1 Dec 2022 08:18:46 +0000 (09:18 +0100)
... as requested at
https://www.reddit.com/r/adventofcode/comments/z9dhtd/please_include_your_contact_info_in_the_useragent/

2022/get.sh

index c8eda781c5fc99af7ccfa0b31013a1741a29e7e2..3c5b5ec44fd4ada2779a79b933995cd6646b133b 100755 (executable)
@@ -5,6 +5,7 @@ URLDAY=`echo $DAY|sed 's/^0//'`
 test -n "$1" && DAY="$1"
 FILE="$((2*DAY - 1))in.txt"
 COOKIE=`cat cookie`
+UA="User-Agent: kas at yenya.net, https://www.fi.muni.cz/~kas/git/aoc.git"
 
 START="6:00:02"
 MAXWAIT=300
@@ -21,7 +22,7 @@ fi
 URL="https://adventofcode.com/2022/day/$URLDAY/input"
 echo
 echo "Downloading $URL to $FILE"
-curl -s -b "$COOKIE" "$URL" --output "$FILE"
+curl -s -b "$COOKIE" -A "$UA" "$URL" --output "$FILE"
 echo ========================================================================
 cat "$FILE"
 echo ========================================================================