From c5fd7f7d34198e882cbdbd51d6201186103d2c20 Mon Sep 17 00:00:00 2001 From: MDLeom <2809763-curben@users.noreply.gitlab.com> Date: Fri, 7 Mar 2025 23:53:52 +0000 Subject: [PATCH] fix: output response header to stdout https://codeahoy.com/general/curl-display-request-response-headers --- src/script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script.sh b/src/script.sh index 50dbabe2..a99d4ac8 100644 --- a/src/script.sh +++ b/src/script.sh @@ -12,7 +12,7 @@ if [ -n "$BASH_VERSION" ]; then shopt -s expand_aliases fi -alias curl="curl -iL" +alias curl="curl -L -D -" alias rm="rm -rf" ## Use GNU grep, busybox grep is not as performant