diff options
author | Daniel Molkentin | 2019-10-23 14:37:18 +0200 |
---|---|---|
committer | Daniel Molkentin | 2019-10-23 14:41:08 +0200 |
commit | d9e2f1d43613aeda60d193c793d7197cb12275b7 (patch) | |
tree | a4e6c87f3e33efc5ef49cfc4905bd638d42e9e77 /configs/conferences/wikidatacon2019/download.sh | |
parent | 55fa6f1054f03c4a7e465c34102daf21947783b5 (diff) |
Add Wikidatacon 2019
Diffstat (limited to 'configs/conferences/wikidatacon2019/download.sh')
-rwxr-xr-x | configs/conferences/wikidatacon2019/download.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configs/conferences/wikidatacon2019/download.sh b/configs/conferences/wikidatacon2019/download.sh new file mode 100755 index 0000000..bbe92b9 --- /dev/null +++ b/configs/conferences/wikidatacon2019/download.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# fahrplan +wget --no-check-certificate -q "https://conf.qtcon.org/en/qtcon/public/schedule.xml" -O /tmp/qtcon16-schedule.xml && mv /tmp/qtcon16-schedule.xml schedule.xml +rm -f /tmp/qtcon16-schedule.xml + +# relive +wget -q "http://live.dus.c3voc.de/relive/qtcon16/index.json" -O /tmp/qtcon16-vod.json && mv /tmp/qtcon16-vod.json vod.json +rm -f /tmp/qtcon16-vod.json |