fix
authorDobrica Pavlinusic <dpavlin@rot13.org>
Fri, 30 Jun 2023 14:33:06 +0000 (16:33 +0200)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Fri, 30 Jun 2023 14:33:06 +0000 (16:33 +0200)
mqtt-pgsql.sh

index e25d39f..2f8c2e8 100755 (executable)
@@ -2,7 +2,7 @@
 
 mosquitto_sub -h localhost -t eg5120 | while read json ; do
        date=$( date +%Y-%m-%dT%H:%M:%S )
-       ecno -n $date ' '
+       echo -n $date ' '
        echo $json | tee data/$date.json | tee /dev/shm/last-eg5120.json
        psql --quiet -c "copy eg5120 (json) from '/dev/shm/last-eg5120.json'" eg5120
 done