From 1276156317e83e8010fd220d522520a5f925d15d Mon Sep 17 00:00:00 2001 From: localhost_frssoft Date: Sun, 6 Mar 2022 02:12:47 +0300 Subject: [PATCH] silent curl --- get_magnets_url.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/get_magnets_url.sh b/get_magnets_url.sh index 342518a..c6bc669 100755 --- a/get_magnets_url.sh +++ b/get_magnets_url.sh @@ -7,12 +7,12 @@ count=100 peertube_api_get_channel_videos () { - curl -q "https://$domain/api/v1/video-channels/$channel/videos?count=$count&skipCount=true" + curl -S "https://$domain/api/v1/video-channels/$channel/videos?count=$count&skipCount=true" } peertube_api_get_video () { - curl -q "https://$domain/api/v1/videos/$1" + curl -S "https://$domain/api/v1/videos/$1" } echo 'Getting uuids...'