aboutsummaryrefslogtreecommitdiff
path: root/httracker
blob: 0651be47001b54aaf445f4f3a895a441918b2eb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
#
# Httrack feed downloader.
#

# Configuration
source `dirname $0`/config || exit 1

# Functions
source `dirname $0`/lib/httracker/functions || exit 1

# Create folders
httracker_setup_folders

# Get URLs from feed
# Thanks http://stackoverflow.com/questions/443991/how-to-parse-rss-feeds-xml-in-a-shell-script
curl -s "$FEED" | grep -o '<link>[^<]*' | grep -o "[^>]*$" > $URLS

if [ "$?" != "0" ]; then
  echo "Error downloading feed $FEED, aborting."
  exit 1
fi

# Iterate over all URLs
httracker_iterate

# Cleanup
rm -rf $URLS