From 34f4f573f50f907f680f7d463c792f4f1a6e53d8 Mon Sep 17 00:00:00 2001 From: "Jan \"Yenya\" Kasprzak" Date: Tue, 14 Dec 2021 08:33:07 +0100 Subject: [PATCH] get.sh: cat the input file --- get.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/get.sh b/get.sh index 4c8c8cd..f888a90 100755 --- a/get.sh +++ b/get.sh @@ -20,7 +20,9 @@ URL="https://adventofcode.com/2021/day/$DAY/input" echo echo "Downloading $URL to $FILE" curl -s -b "$COOKIE" "$URL" --output "$FILE" -echo +echo ======================================================================== +cat "$FILE" +echo ======================================================================== echo "lines words chars" wc "$FILE" echo -- 2.43.0