diff options
author | MaZderMind | 2016-01-30 22:55:36 +0100 |
---|---|---|
committer | MaZderMind | 2016-01-30 22:55:36 +0100 |
commit | 0fa82471bff7703252964af27c81265b18421a6c (patch) | |
tree | 58b3d6e9be285119ce483df9dac5b41ff883a26e /configs/conferences/ffrl-routing-days-2016/download.sh | |
parent | 76a9ab711db19e243a11053a0b35092327488a0a (diff) |
configure relive & schedule
Diffstat (limited to 'configs/conferences/ffrl-routing-days-2016/download.sh')
-rwxr-xr-x | configs/conferences/ffrl-routing-days-2016/download.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configs/conferences/ffrl-routing-days-2016/download.sh b/configs/conferences/ffrl-routing-days-2016/download.sh new file mode 100755 index 0000000..e778bd5 --- /dev/null +++ b/configs/conferences/ffrl-routing-days-2016/download.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# fahrplan +wget --no-check-certificate -q "https://mlsrv.de/public/routingdays16-schedule/schedule.xml" -O /tmp/schedule.xml && mv /tmp/schedule.xml schedule.xml +rm -f /tmp/schedule.xml /tmp/schedule.json + +# vod json +wget -q "http://live.dus.c3voc.de/relive/ffrl-routing-days/index.json" -O /tmp/vod.json && mv /tmp/vod.json vod.json +rm -f /tmp/vod.json |