I have the output a pipe secuence
command_a | command_b | ... | command_n
the output is a sequence a number
4.2
-1
...
0.2
I can use gnuplot to plot this numbers ? (added gnuplot to pipe sequence )
You can use the '-' source in the plot command. You just need to pipe the command file first and then the data file. For example:
test.gnuplot:
plot '-' with lines
Example command line:
[command generating data] | cat test.gnuplot - | gnuplot -persist