Date: Sun, 21 Jul 2002 00:10:22 -0400 From: parv@subdimension.com To: kosabsd <kosabsd@o2.pl> Cc: mike <keckdj@yahoo.com>, freebsd-questions@freebsd.org Subject: Re: make output Message-ID: <20020721041022.GA30634@moo.holy.cow> In-Reply-To: <00e101c23015$15f01fe0$0200a8c0@tmk.one.pl> References: <000901c22685$7f8f9fa0$3203010a@eo.kollnet.com> <00e101c23015$15f01fe0$0200a8c0@tmk.one.pl>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020721041022.GA30634>