|
From: | Alan Painter |
Subject: | Re: octave scripts don't go to background |
Date: | Thu, 20 Jul 2000 11:10:41 +0200 |
% 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 &
[Prev in Thread] | Current Thread | [Next in Thread] |