mirror of
https://github.com/voc/streaming-website
synced 2024-11-15 08:57:11 +00:00
7 lines
285 B
Bash
7 lines
285 B
Bash
#!/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
|