dwm/dumpweather.sh
2021-12-01 10:13:46 +01:00

7 lines
184 B
Bash
Executable File

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