RustGnuplot icon indicating copy to clipboard operation
RustGnuplot copied to clipboard

Doesn't pause when I write figure to file and pipe it to gnuplot

Open YjyJeff opened this issue 8 years ago • 1 comments

I want to store figure to a file and then pipe it to gnuplot to show the figure. figure.show() method works well. But when I pipe the file that I wrote to to gnuplot, it quit immediately. I tried to add a pause command in the end. However, it doesn't work.

YjyJeff avatar May 17 '17 06:05 YjyJeff

You need to do gnuplot -p < your_file. -p makes it persist after running.

SiegeLord avatar May 20 '17 02:05 SiegeLord