|
From: Roman D. <rom...@gm...> - 2013-05-09 05:36:02
|
You can use named pipes (https://en.wikipedia.org/wiki/Named_pipe). On *nix it is easy: % mkfifo input % gunzip -c input.gz >input & [2] 2379 % gnuplot myplot.gp >out.png [2] + done gunzip -c input.gz > input You'll need to write data into pipe as many times as you plot it in your script. 2013/5/9 Mahmood Naderan <nt_...@ya...> > Hi > It seems that ghbplot can not read data from a compressed archive (gz, > bzip2, ...). > > If that is true, there is there any tweak for that or it can read from > plain text only? > > > > Regards, > Mahmood > > ------------------------------------------------------------------------------ > Learn Graph Databases - Download FREE O'Reilly Book > "Graph Databases" is the definitive new guide to graph databases and > their applications. This 200-page book is written by three acclaimed > leaders in the field. The early access version is available now. > Download your free book today! http://p.sf.net/sfu/neotech_d2d_may > _______________________________________________ > gnuplot-info mailing list > gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > |