|
From:
<br...@ph...> - 2006-04-18 18:12:58
|
Mojca Miklavec wrote: > I have a gnuplot.bat with > c:\path-to-wgnuplot.exe %* Calling that batch file gnuplot.bat instead of wgnuplot.bat is creating smoke screen that hides the crucial detail: that you're doing this on MS Windows. That's one single gnuplot platform where pause -1 can't detect that stdin was redirected (because Win32 GUI apps like wgnuplot don't *have* a stdin, so nothing to redirect), and therefore the usual method of short-circuiting pause -1 doesn't work. > I'm still using the "old" windows terminal. Perhaps wxwidgets behave better. IIRC it doesn't. Wxwidgets only replaces the graph window, but not the text console window, nor the pause window. > I'm not piping (I guess). Correctly. To pipe, you would have to use pgnuplot, not wgnuplot. |