blob: 81d5ad7ef7d21054b95cd4793b7e796fcb9fd81e (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# fahrplan
wget --no-check-certificate -q "http://events.ccc.de/congress/2014/Fahrplan/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
|