Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Oct 1998 06:52:49 -0500
From:      Zach Heilig <zach@gaffaneys.com>
To:        Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>, FreeBSD Current <current@FreeBSD.ORG>
Subject:   Re: Make World stop
Message-ID:  <19981022065249.A1166@znh.org>
In-Reply-To: <XFMail.981022070343.asmodai@wxs.nl>; from Jeroen Ruigrok/Asmodai on Thu, Oct 22, 1998 at 07:03:43AM %2B0200
References:  <XFMail.981022070343.asmodai@wxs.nl>

next in thread | previous in thread | raw e-mail | index | archive | help

On Thu, Oct 22, 1998 at 07:03:43AM +0200, Jeroen Ruigrok/Asmodai wrote:
> whilst trying to make world last night I discovered that make failed on me with
> a ld -ll not known error.

...

> Anyone else have experienced it?

No, sorry.

> And while I am on subject, how can I do something like:

> time make world 2>&1 > make-world.211098.txt

> and add an extra command to still show the output on screen as well as port it
> to a file?

I simply do something similar to this:

# nohup time make world > foo.log 2>&1 &
# exit
$ tail -f foo.log

you could also do this:

# (time make world 2>&1) | tee foo.log

-- 
Zach Heilig <zach@gaffaneys.com>
If it looks like a duck, and quacks like a duck, we have to at least consider
the possibility that we have a small aquatic bird of the family Anatidę on
our hands (Douglas Adams -- Dirk Gently's Holistic Detective Agency)

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19981022065249.A1166>