help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Octave Script - Turn off output!


From: Geordie McBain
Subject: Re: Octave Script - Turn off output!
Date: Wed, 06 Sep 2006 09:36:27 +1000

On Tue, 2006-09-05 at 18:04 -0300, Jaindson Valentim wrote:
> Hi everybody,
> 
> I would like to know how to turn off the output of an octave script.
> 
> I have an octave script and do not want to see any output of his
> execution. What this script does is create a file, but in some cases
> it could not do it because there is some errors in an expression or
> something like that, so I do not want to see the output of this
> error. 
> 
> How can I do this?
> 
> I'm doing:
> 
> octave -q myOctateScript.oct

Would redirecting the standard error stream help?  That is:

$ octave -q myOctateScript.oct 2>/dev/null

or in case it might contain something of interest:

$ octave -q myOctateScript.oct 2>myOctateScript.err



reply via email to

[Prev in Thread] Current Thread [Next in Thread]