12 lines
92 B
Bash
Executable File
12 lines
92 B
Bash
Executable File
#!/bin/bash
|
|
i=0
|
|
|
|
while [ 1 ]
|
|
do
|
|
/opt/domoticz/scripts/hum.sh
|
|
sleep 60
|
|
|
|
done
|
|
|
|
exit 0
|