wsc-tools-clear-topics.sh 168 B

1234
  1. #!/bin/sh
  2. echo "cleaning " $1 " :: usage: cleanmqtt <host>"
  3. mosquitto_sub -h $1 -t "#" -v | while read line _; do mosquitto_pub -h $1 -t "$line" -r -n; done
  4. echo "done"