aboutsummaryrefslogtreecommitdiff
path: root/httracker
diff options
context:
space:
mode:
Diffstat (limited to 'httracker')
-rwxr-xr-xhttracker2
1 files changed, 1 insertions, 1 deletions
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 '<link>[^<]*' | grep -o "[^>]*$" > $URLS
+curl -s $FEED | grep -o '<link>[^<]*' | grep -o "[^>]*$" > $URLS
if [ "$?" != "0" ]; then
echo "Error downloading feed $FEED, aborting."