diff options
Diffstat (limited to 'configs/download.sh')
-rwxr-xr-x | configs/download.sh | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/configs/download.sh b/configs/download.sh index 8808ff0..c2a2b3e 100755 --- a/configs/download.sh +++ b/configs/download.sh @@ -1,10 +1,14 @@ #!/bin/sh -# fahrplan -wget --no-check-certificate -q "http://events.ccc.de/congress/2014/Fahrplan/schedule.xml" -O /tmp/schedule.xml && mv /tmp/schedule.xml schedule.xml - -# vod json -wget -q "http://cdn.c3voc.de/releases/relive/index.json" -O /tmp/vod.json && mv /tmp/vod.json vod.json +# conferences +wd=`pwd` +for d in conferences/*; do + if [ -x $d/download.sh ]; then + cd $d + ./download.sh + cd $wd + fi +done # eventkalender upcoming wget -q --no-check-certificate "https://c3voc.de/eventkalender/events.json?filter=upcoming&streaming=yes" -O /tmp/upcoming.json && mv /tmp/upcoming.json upcoming.json |