diff options
Diffstat (limited to 'bin/run-hourly')
-rwxr-xr-x | bin/run-hourly | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/run-hourly b/bin/run-hourly new file mode 100755 index 0000000..337df2b --- /dev/null +++ b/bin/run-hourly @@ -0,0 +1,10 @@ +#!/bin/sh + +cd $(dirname $0)/.. + +for scraper in $(grep '# Run: hourly' scrapersources/*|cut -d: -f1|cut -d/ -f2); do + echo + echo $scraper + echo + time ./run-scraper $scraper +done |