Files
homeserver/hass/cleanmqtt.sh
2025-01-28 22:35:30 +00:00

5 lines
177 B
Bash
Executable File

#!/bin/sh
echo "cleaning " $1 " :: usage: cleanmqtt <host>"
mosquitto_sub -h $1 -t "#" -v --retained-only | while read line; do mosquitto_pub -h $1 -t "${line% *}" -r -n; done