On Mon, Jan 24, 2011 at 20:20, Christopher Bort <[email protected]> wrote: > > Run your program in a screen session (man screen) and detach the session > (C-a d) before quitting Terminal.
Screen is good, but if you don't care about monitoring the output, or are fine with logging to a file, you could use "nohup". nohup ./myprogram 121 331 8.9 2>stderr.log >stdout.log & The log files are optional, the default is to log to nohup.out, and you could also use "nohup command &>/dev/null &" to not log at all. -- arno s hautala /-| [email protected] pgp b2c9d448 _______________________________________________ MacOSX-talk mailing list [email protected] http://www.omnigroup.com/mailman/listinfo/macosx-talk
