You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amcrest2mqtt/tools/clear.sh

10 lines
259 B
Bash

#!/bin/bash
mosquitto_sub -h mosquitto.graystorm.com -v -t '#' --retained-only \
| grep 'amcrest2mqtt' \
| while read -r topic payload ; do
mosquitto_pub -h mosquitto.graystorm.com -t "$topic" -n -r
echo "Purged $topic"
done
echo "done."