commit 6cd9d2a1c042e1c75c43dd9df42adea60e540c84
parent a689f9d8a6487af34787f68baa1dd0e592403e99
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Thu, 14 Nov 2019 19:27:59 +0100
Run curl with silent flag
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.local/bin/linkhandler b/.local/bin/linkhandler
@@ -54,7 +54,7 @@ handle_url() {
nohup comic "$url" >/dev/null 2>&1 & ;;
"download")
if type -v curl >/dev/null 2>&1; then
- echo "curl -LO '$url' >/dev/null" | at now
+ echo "curl -sLO '$url' >/dev/null" | at now
elif type -v wget >/dev/null 2>&1; then
echo "wget '$url' >/dev/null" | at now
else