send_mqtt.sh 172 B

1234567
  1. #!/bin/bash
  2. topic=$1
  3. message=$2
  4. #topic=$(echo ${line}|cut -d\ -f 1)
  5. #message=$(echo ${line}|cut -d\ -f 2)
  6. /usr/bin/mosquitto_pub -h 10.8.0.1 -t "${topic}" -m ${message}