diff options
author | MaZderMind | 2016-03-25 13:12:36 +0100 |
---|---|---|
committer | MaZderMind | 2016-03-25 13:12:36 +0100 |
commit | 96b8e475f0c7e63de9588225b71a43dda5dd40a7 (patch) | |
tree | 04581c11297b1c8c5309cc16403347f64a627917 /configs/conferences/eh16/download.sh | |
parent | 53fa8f43e56466b1de9848624db5f986df8bdb88 (diff) | |
parent | e0ee2fa63230617aee19b987986440b496a2c27d (diff) |
Merge branch 'eh16'
Diffstat (limited to '')
-rwxr-xr-x | configs/conferences/eh16/download.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configs/conferences/eh16/download.sh b/configs/conferences/eh16/download.sh new file mode 100755 index 0000000..416e240 --- /dev/null +++ b/configs/conferences/eh16/download.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# fahrplan +wget --no-check-certificate -q "https://fahrplan.eh16.easterhegg.eu/schedule.xml" -O /tmp/schedule.xml && mv /tmp/schedule.xml schedule.xml +rm -f /tmp/schedule.xml + +# vod json +wget -q "http://live.dus.c3voc.de/relive/eh16/index.json" -O /tmp/vod.json && mv /tmp/vod.json vod.json +rm -f /tmp/vod.json |