Anyone knows how to dynamically display text in gnuplot?
I am live streaming a data/log file, and I can extract the data from the file, with cat, sed, cut, etc. command, and then gnuplot it. It works great.
But I want to show these numbers, so that that these numbers will dynamically display in the plot at certain position.
I tried to use
set label "< cat file | grep "Time" | cut -d ' ' -f2 | tr -d ','"
But this apparently doesn;t work.
Anyone knows how to set the label as a user defined variable?