7 lines
112 B
Bash
Executable File
7 lines
112 B
Bash
Executable File
#!/bin/sh
|
|
|
|
while true; do
|
|
curl "wttr.in/Paderborn?m&format=j1" > weatherdump 2>/dev/null
|
|
sleep 600
|
|
done
|