From: Silvio Rhatto Date: Sun, 25 Aug 2013 19:53:47 +0000 (-0300) Subject: Make curl silent X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=720d0f108bff5aa3c2d6bfe16a3494473c6d250d;p=httruta.git Make curl silent --- diff --git a/httracker b/httracker index e33b9a4..42ae9af 100755 --- a/httracker +++ b/httracker @@ -54,7 +54,7 @@ mkdir -p $MIRRORS $TMP # Get URL # Thanks http://stackoverflow.com/questions/443991/how-to-parse-rss-feeds-xml-in-a-shell-script -curl $FEED | grep -o '[^<]*' | grep -o "[^>]*$" > $URLS +curl -s $FEED | grep -o '[^<]*' | grep -o "[^>]*$" > $URLS if [ "$?" != "0" ]; then echo "Error downloading feed $FEED, aborting."