help-octave
[Top][All Lists]
Advanced

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

Re: octave scripts don't go to background


From: Alan Painter
Subject: Re: octave scripts don't go to background
Date: Thu, 20 Jul 2000 11:10:41 +0200

Can I suggest the csh (csh)?

% octave def.m arg1 arg2 ... < /dev/null >& octave_out &

Or the bourne shell (sh)?

$ octave def.m arg1 arg2 ... < /dev/null > octave_out 2>&1 &

Sorry if you've already tried these.

-alan

"Gerd Bürger" wrote:

Doug,

You wrote:
   >Try
   >
   >octave < def.m >& octave_out &

but in case you want command line arguments you have to do

octave def.m arg1 arg2 ... >& octave_out &


reply via email to

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