diff options
Diffstat (limited to '')
-rw-r--r-- | configs/conferences/lac2018/download.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configs/conferences/lac2018/download.sh b/configs/conferences/lac2018/download.sh new file mode 100644 index 0000000..d9d4b39 --- /dev/null +++ b/configs/conferences/lac2018/download.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# fahrplan +#wget --no-check-certificate -q "https://.../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/lac2018/index.json" -O /tmp/vod.json && mv /tmp/vod.json vod.json +rm -f /tmp/vod.json |