#!/bin/sh case "$1" in open) mosquitto_pub -h 10.32.135.1 -t cmnd/vent/POWER2 -m 1 sleep 20 mosquitto_pub -h 10.32.135.1 -t cmnd/vent/POWER2 -m 0 ;; close) mosquitto_pub -h 10.32.135.1 -t cmnd/vent/POWER1 -m 1 sleep 20 mosquitto_pub -h 10.32.135.1 -t cmnd/vent/POWER1 -m 0 ;; *) echo unknown command ;; esac