4 lines
173 B
Bash
4 lines
173 B
Bash
#!/bin/sh
|
|
echo "cleaning " $1 " :: usage: cleanmqtt <host> <topic>"
|
|
mosquitto_sub -h $1 -t "${2}/#" -v | while read line; do mosquitto_pub -h $1 -t "${line% *}" -r -n; done
|