dwm/dumpweather.sh

7 lines
170 B
Bash
Raw Normal View History

2021-03-14 15:41:00 +01:00
#!/bin/sh
while true; do
curl "http://wetter.upb.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