Subject: Re: KDE via pkgsrc?
To: None <mcmahill@mtl.mit.edu>
From: Dr. Bill Studenmund <wrstuden@loki.stanford.edu>
List: port-mac68k
Date: 03/25/1999 11:42:06
On Sun, 21 Mar 1999 mcmahill@mtl.mit.edu wrote:
> I've had pretty good success with packages. I do, however, often times do
> the following:
>
> % sh
> # nice -n 10 make 2>&1 | tee make.log
Under csh, you can do about the same thing:
nice -n 10 make |& tee make.log
Though what I typically do is:
make >& make.log & ; tail -f make.log
The difference is that if you are logged in remotely, network connectivity
can slow how much stuff the to-screen output of tee can pass, which will
slow how fast the make can operate.
Take care,
Bill