blob: 8c6d00f2167c00c3e53c783f6e0559e09b178ed1 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# fahrplan
wget --no-check-certificate -q "https://cfp.privacyweek.at/pw20/schedule/export/schedule.xml" -O /tmp/pw20-schedule.xml && mv /tmp/pw20-schedule.xml schedule.xml
# relive
wget -q "http://live.dus.c3voc.de/relive/pw20/index.json" -O /tmp/vod.json && mv /tmp/vod.json vod.json
rm -f /tmp/vod.json
|