From: calmar c. <ma...@ca...> - 2011-06-01 08:06:59
|
Hi all, is there a way to make gnuplot silent - i.e. pipes stuff to gnuplot but not printing it out to the terminal (what is does actually)? Thanks a lot marco -- (o_ It rocks: LINUX + Command-Line-Interface //\ GPG: 0x59D90F4D V_/_ http://www.calmar.ws |
From: calmar c. <ma...@ca...> - 2011-06-01 08:15:29
|
On Wed, Jun 01, 2011 at 09:48:46AM +0200, calmar c. wrote: > Hi all, > > is there a way to make gnuplot silent - i.e. pipes stuff to > gnuplot but not printing it out to the terminal (what is does > actually)? OPS, I just saw the debug=1 thing ... ok making it a debug=0 did the trick :) thanks and cheers marco -- (o_ It rocks: LINUX + Command-Line-Interface //\ GPG: 0x59D90F4D V_/_ http://www.calmar.ws |
From: calmar c. <ma...@ca...> - 2011-06-01 08:30:45
|
On Wed, Jun 01, 2011 at 10:11:43AM +0200, Michael Buttgereit wrote: hi Michael, > > if you are on a linux machine you can start gnuplot with > > >> gnuplot 2>>/dev/null > > this will pipe the err_stream to dev/null and you have a clean output. > > but there are some drawbacks. ;-) > > Regards > Michael Ah Ok, I guess this would be the solution to get rid of Warning messages like: "Warning: empty y2 range [0:0], adjusting to [-1:1]" - they are still there. pythonscript 2>/dev/null worked at least. Cheers marco -- (o_ It rocks: LINUX + Command-Line-Interface //\ GPG: 0x59D90F4D V_/_ http://www.calmar.ws |
From: Michael B. <but...@ph...> - 2011-06-01 09:24:29
|
Hmm, well I'm not quite sure but you can start your script with pythonscript 1>/dev/null 2>/dev/null actually all the output to stdout and stderr will then be deleted. maybe that helps. :) --- On Wed, 1 Jun 2011 10:30:36 +0200 "calmar c." <ma...@ca...> wrote: > On Wed, Jun 01, 2011 at 10:11:43AM +0200, Michael Buttgereit wrote: > hi Michael, > > > > > if you are on a linux machine you can start gnuplot with > > > > >> gnuplot 2>>/dev/null > > > > this will pipe the err_stream to dev/null and you have a clean > > output. > > > > but there are some drawbacks. ;-) > > > > Regards > > Michael > > Ah Ok, I guess this would be the solution to get rid of Warning > messages like: "Warning: empty y2 range [0:0], adjusting to > [-1:1]" - they are still there. > > pythonscript 2>/dev/null worked at least. > > Cheers > marco > > ---- Michael Buttgereit Extraterrestrische Physik, IEAP Christian-Albrechts-Universitaet zu Kiel Telefon: +49(431) 880 3799 www.ieap.uni-kiel.de/et |
From: calmar c. <ma...@ca...> - 2011-06-01 20:56:09
|
On Wed, Jun 01, 2011 at 10:56:00AM +0200, Michael Buttgereit wrote: hi Michael, > pythonscript 1>/dev/null 2>/dev/null or 1>/dev/null 2>&1 I think, But actually I would prefer to get rid of it 'inside' the pythonscript. Possibly that scrips gets some use on MS as well. Anyway, there is only this warning about the empty y2 range now (since the values are 0 all the time sometimes). it's not an overly big issue. Cheers and thanks, marco PS "Extraterrestrische Physik" wow :) > > actually all the output to stdout and stderr will then be deleted. > > maybe that helps. :) > > --- > On Wed, 1 Jun 2011 10:30:36 +0200 > "calmar c." <ma...@ca...> wrote: > > > On Wed, Jun 01, 2011 at 10:11:43AM +0200, Michael Buttgereit wrote: > > hi Michael, > > > > > > > > if you are on a linux machine you can start gnuplot with > > > > > > >> gnuplot 2>>/dev/null > > > > > > this will pipe the err_stream to dev/null and you have a clean > > > output. > > > > > > but there are some drawbacks. ;-) > > > > > > Regards > > > Michael > > > > Ah Ok, I guess this would be the solution to get rid of Warning > > messages like: "Warning: empty y2 range [0:0], adjusting to > > [-1:1]" - they are still there. > > > > pythonscript 2>/dev/null worked at least. > > > > Cheers > > marco > > > > > > > > ---- > Michael Buttgereit > Extraterrestrische Physik, IEAP > Christian-Albrechts-Universitaet zu Kiel > Telefon: +49(431) 880 3799 > www.ieap.uni-kiel.de/et > > ------------------------------------------------------------------------------ > Simplify data backup and recovery for your virtual environment with vRanger. > Installation's a snap, and flexible recovery options mean your data is safe, > secure and there when you need it. Data protection magic? > Nope - It's vRanger. Get your free trial download today. > http://p.sf.net/sfu/quest-sfdev2dev > _______________________________________________ > Gnuplot-py-users mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users -- (o_ It rocks: LINUX + Command-Line-Interface //\ GPG: 0x59D90F4D V_/_ http://www.calmar.ws |