aboutsummaryrefslogtreecommitdiffstats
path: root/bin/run-daily
blob: e362e3a63bd437d5a9c68beac674ff94c3ab9996 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

cd $(dirname $0)/..

for scraper in $(grep '#  Run: daily' scrapersources/*|cut -d: -f1|cut -d/ -f2); do
    echo
    echo $scraper
    echo
    time ./run-scraper $scraper
done