From owner-freebsd-questions Sat Jul 20 21: 7:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B29BD37B400 for ; Sat, 20 Jul 2002 21:07:54 -0700 (PDT) Received: from flamingo.mail.pas.earthlink.net (flamingo.mail.pas.earthlink.net [207.217.120.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8516A43E58 for ; Sat, 20 Jul 2002 21:07:53 -0700 (PDT) (envelope-from parv@pair.com) Received: from sdn-ar-003dcwashp242.dialsprint.net ([206.133.15.132] helo=moo.holy.cow) by flamingo.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 17W80U-0006fX-00; Sat, 20 Jul 2002 21:07:43 -0700 Received: by moo.holy.cow (Postfix, from userid 1001) id B64CE50CC2; Sun, 21 Jul 2002 00:10:22 -0400 (EDT) Date: Sun, 21 Jul 2002 00:10:22 -0400 From: parv@subdimension.com To: kosabsd Cc: mike , freebsd-questions@freebsd.org Subject: Re: make output Message-ID: <20020721041022.GA30634@moo.holy.cow> Reply-To: f-q Mail-Followup-To: kosabsd , mike , freebsd-questions@freebsd.org References: <000901c22685$7f8f9fa0$3203010a@eo.kollnet.com> <00e101c23015$15f01fe0$0200a8c0@tmk.one.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <00e101c23015$15f01fe0$0200a8c0@tmk.one.pl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG in message <00e101c23015$15f01fe0$0200a8c0@tmk.one.pl>, wrote kosabsd thusly... > > You can do this: > > # make install | tee make.log > > It causes that everything, which displayes on a screen during 'make install' > , will be written in make.log file. that won't catch any output on stderr even if it "appears on screen". send stderr to stdout to capture it; in sh-like shells, that would be... make install 2>&1 | tee log ...or you could use script(1) -- see the man page for details -- too... script log make install -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message