diff options
author | derpeter | 2021-03-14 21:25:27 +0100 |
---|---|---|
committer | GitHub | 2021-03-14 21:25:27 +0100 |
commit | 8961a867226fd5356830f258f926c302beed8c0e (patch) | |
tree | e0095adc1f5679880a467c96974ae81ca48e5b17 /configs/conferences/fff/download.sh | |
parent | 5487590053dc99c4c6401c5ae73303b4cbc71089 (diff) | |
parent | 5b0b5c541194c2c7c5810201833de09feea91956 (diff) |
Merge pull request #136 from karlbeecken/master
fix broken copy; git is hard
Diffstat (limited to '')
-rwxr-xr-x | configs/conferences/fff/download.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configs/conferences/fff/download.sh b/configs/conferences/fff/download.sh new file mode 100755 index 0000000..ef4a476 --- /dev/null +++ b/configs/conferences/fff/download.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +# fahrplan +wget --no-check-certificate -q "https://cfp.privacyweek.at/pw18/schedule/export/schedule.xml" -O /tmp/pw18-schedule.xml && mv /tmp/pw18-schedule.xml schedule.xml + +# relive +wget -q "http://live.dus.c3voc.de/relive/pw18/index.json" -O /tmp/vod.json && mv /tmp/vod.json vod.json +rm -f /tmp/vod.json |