Skip to content

Instantly share code, notes, and snippets.

@David-Lor
Created November 22, 2019 15:30
Show Gist options
  • Save David-Lor/3aa98846069c74a230f8d70d52ae5f38 to your computer and use it in GitHub Desktop.
Save David-Lor/3aa98846069c74a230f8d70d52ae5f38 to your computer and use it in GitHub Desktop.
Bash MQTT subscribe (mosquitto_sub) with callback
#!/bin/sh
mosquitto_sub -h localhost -t test -v | while read -r topic payload
do
echo "Rx @ ${topic}: ${payload}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment