M.Hockings wrote:
Michael Ault wrote:
There is the nohup command or to run in background use
the "&" suffix for the command line.
# nohup runthis
or
# runthis &
Mike
=====
Michael R. Ault
Senior Technical Management Consultant
TUSC -- The Oracle Experts WWW.TUSC.COM
Thanks Michael,
The '&' did the trick !
Keep in mind the differences between "nohup", "bg" and "&".
"nohup" runs the program in the background and redirects its stdout and
stderr output streams to a "nohup.log" file in the current directory.
"bg" (available in the bash shell) allows a current foreground program
to be moved to the background, stdout and stderr remain directed at the
current terminal.
The "&" suffix launches the program in the background with stdout and
stderr directed to the current terminal
----------------------------------------------------------------------
- Rick Stevens, Senior Systems Engineer rstevens vitalstream com -
- VitalStream, Inc. http://www.vitalstream.com -
- -
- You know the old saying--any technology sufficiently advanced is -
- indistinguishable from a Perl script -
- --Programming Perl, 2nd Edition -
----------------------------------------------------------------------