You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to periodically run some command and add the output to the plot.
session-1 $ mkfifo /tmp/fifo
session-1 $ echo "i\tx\ty" >> /tmp/fifo
session-1 $ echo "1\t0\t3" >> /tmp/fifo
session-1 $ echo "2\t1\t4" >> /tmp/fifo
...
session-2 $ ./termeter < /tmp/fifo
# termeter starts and plots the data
session-1 $ echo "10\t33\t44" >> /tmp/fifo
# this data does not get plotted since fifo is exhausted by the start of termeter
Workaround is sending the output to a temp file and starting termeter with tail -f tempfile; it would be great if we could do it without using tail.
The text was updated successfully, but these errors were encountered:
We need to periodically run some command and add the output to the plot.
Workaround is sending the output to a temp file and starting
termeter
withtail -f tempfile
; it would be great if we could do it without usingtail
.The text was updated successfully, but these errors were encountered: