blob: fecb6e77900a9b22e880a7ef39bab74141c806f9 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# fahrplan
wget --no-check-certificate -q "http://data.c3voc.de/32C3/everything.schedule.xml" -O /tmp/schedule.xml && mv /tmp/schedule.xml schedule.xml
# vod json
wget -q "http://cdn.c3voc.de/releases/relive/index.json" -O /tmp/vod.json && mv /tmp/vod.json vod.json
|