Files
spielplatz/mqtt/remove_retained_topic.sh
2024-02-29 11:45:54 +01:00

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