blob: 5bf45cc3811795ad45909bb61c076e4ecbdc90e3 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# fahrplan
wget --no-check-certificate -q "https://jh.kohl.okfn.de/schedule-jh.xml" -O /tmp/jh18-ulm-schedule.xml && mv /tmp/jh18-ulm-schedule.xml schedule.xml
# relive
wget -q "//relive.c3voc.de/relive/jh/index.json" -O /tmp/vod.json && mv /tmp/vod.json vod.json
rm -f /tmp/vod.json
rm -f /tmp/jh18-ulm-schedule.xml
|