dwm/dumpweather.sh

7 lines
184 B
Bash
Raw Normal View History

2021-03-14 15:41:00 +01:00
#!/bin/sh
while true; do
2021-12-01 10:13:46 +01:00
curl "https://wetter.cs.uni-paderborn.de/handy.html" 2>/dev/null | iconv -f "iso8859-1" -t utf-8 | sed -e 's/<[^>]*>//g' > weatherdump
2021-03-14 15:41:00 +01:00
sleep 600
done