diff options
Diffstat (limited to 'configs')
-rw-r--r-- | configs/.gitignore | 2 | ||||
-rwxr-xr-x | configs/download.sh | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/configs/.gitignore b/configs/.gitignore new file mode 100644 index 0000000..67c51fe --- /dev/null +++ b/configs/.gitignore @@ -0,0 +1,2 @@ +*.xml +*.json diff --git a/configs/download.sh b/configs/download.sh new file mode 100755 index 0000000..6010291 --- /dev/null +++ b/configs/download.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +# fahrplan +wget -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 |