Damien Bateman wrote: > On Sun, 2002-06-16 at 16:50, Chris Bayley wrote: > >>How do I capture the error output of 'make' i.e. stderr ? >>simple redirection i.e. 'make > results' captures stdio right ? > > > make > results 2>&1 > > or > > make 2>&1 > results
If you are doing a build which takes significant time, you might like to do it in the background at reduced priority: nohup nice make 1> make.log 2> make.errs & You can set the job going and log out. It will just carry on on its own. -- C.S.
