quiet
[rtl433-sensors] / mqtt-tele-pgsql.sh
1 #!/bin/sh -e
2
3 mosquitto_sub -h 10.13.37.5 -t 'tele/#' -v | while read topic json ; do
4         echo $json > /dev/shm/tele.json
5 #       psql -c "copy tele (json) from '/dev/shm/tele.json'" rot13
6         psql --quiet -c "insert into tele (topic,json) values ('$topic','$json');" rot13
7 done