FILE="$((2*DAY - 1))in.txt"
COOKIE=`cat cookie`
+START="6:00:02"
+MAXWAIT=300
+STARTSEC=`date -d "$START" "+%s"`
+NOW=`date "+%s"`
+WAITSEC=`expr $STARTSEC - $NOW`
+
+if [ $WAITSEC -gt 0 -a $WAITSEC -lt $MAXWAIT ]
+then
+ echo "Waiting for $WAITSEC seconds till $START ..."
+ sleep $WAITSEC
+fi
+
URL="https://adventofcode.com/2021/day/$DAY/input"
-echo "Stahuji $URL do $FILE"
-curl -q -b "$COOKIE" "$URL" --output "$FILE"
+echo
+echo "Downloading $URL to $FILE"
+curl -s -b "$COOKIE" "$URL" --output "$FILE"
+echo
+echo "lines words chars"
+wc "$FILE"
+echo