You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
RELAYURL="$(cat "$(dirname "$0")"/secret.txt)/state.xml?relay1State=2&pulseTime1=5" |
|
wget -O - --timeout=1 --tries=1 $RELAYURL |
|
logger "$0 wget returns $?"
|
|
|