> >> Is it possible, or would it be a useful feature for gnuplot to have a
> >> datafile mode setting for which data files are deleted after they have
> >> been read and are no longer required for gnuplot's use?
> >
> > So what exactly is keeping them from issuing a "! rm file" into
> > gnuplot's command queue directly after the "plot" command?
That's exactly how I do it in Octave, e.g.
tmpfile=tmpnam;
savegpbin(x, y, z, tmpfile);
gpbin2png(out_file, tmpfile);
graw( sprintf("!rm -f %s\n", tmpfile) );
But note that you cannot do "replot".
---
PM
|