From: Dobrica Pavlinusic Date: Sun, 28 Oct 2018 11:55:08 +0000 (+0100) Subject: quiet X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;ds=inline;p=rtl433-sensors quiet --- diff --git a/mqtt-tele-pgsql.sh b/mqtt-tele-pgsql.sh index e276ef6..16ae79a 100755 --- a/mqtt-tele-pgsql.sh +++ b/mqtt-tele-pgsql.sh @@ -1,7 +1,7 @@ -#!/bin/sh -x +#!/bin/sh -e mosquitto_sub -h 10.13.37.5 -t 'tele/#' -v | while read topic json ; do echo $json > /dev/shm/tele.json # psql -c "copy tele (json) from '/dev/shm/tele.json'" rot13 - psql -c "insert into tele (topic,json) values ('$topic','$json');" rot13 + psql --quiet -c "insert into tele (topic,json) values ('$topic','$json');" rot13 done