Files
spielplatz/mqtt/remove_retained_topic.sh

4 lines
173 B
Bash
Executable File

#!/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