mirror of https://github.com/sfeakes/AqualinkD.git
7 lines
124 B
Bash
7 lines
124 B
Bash
|
#!/bin/sh
|
||
|
while :
|
||
|
do
|
||
|
wget -O /dev/stdout 'http://aqualink.ip.address/?command=mhstatus' 2>/dev/null
|
||
|
sync
|
||
|
sleep 60
|
||
|
done
|