From 8003a9d88ff583637f2347abfaeb822b069e0c88 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Sun, 28 Oct 2018 12:55:08 +0100 Subject: [PATCH] quiet --- mqtt-tele-pgsql.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.20.1