#!/bin/bash if [ -z $3 ]; then echo "usage: $0 host actionTypeId deviceId [paramname paramvalue] [paramname paramvalue]" elif [ -z $4 ]; then (echo '{"id":1, "method":"Actions.ExecuteAction","params":{"actionTypeId": "{'$2'}", "deviceId":"{'$3'}"}}'; sleep 1) | nc $1 2222 elif [ -z $5 ]; then echo "usage: $0 host actionTypeId deviceId [paramname paramvalue] [paramname paramvalue]" elif [ -z $6 ]; then echo calling.. $4 $5 (echo '{"id":1, "method":"Actions.ExecuteAction","params":{"actionTypeId": "{'$2'}", "deviceId":"{'$3'}","params":[{ "name": "'$4'", "value":"'$5'"}]}}'; sleep 1) | nc $1 2222 elif [ -z $7 ]; then echo "usage: $0 host actionTypeId deviceId [paramname paramvalue] [paramname paramvalue]" else (echo '{"id":1, "method":"Actions.ExecuteAction","params":{"actionTypeId": "{'$2'}", "deviceId":"{'$3'}","params":[{"name": "'$4'", "value":"'$5'"}, {"name": "'$6'", "value": "'$7'"}]}}'; sleep 1) | nc $1 2222 fi