Path: utzoo!utgpu!news-server.csri.toronto.edu!umich!uunet!tut.cis.ohio-state.edu!purdue!haven!umbc3!math9.math.umbc.edu!rouben From: rouben@math9.math.umbc.edu (Rouben Rostamian) Newsgroups: comp.unix.shell Subject: Re: Output redirection Message-ID: <4272@umbc3.UMBC.EDU> Date: 29 Oct 90 06:44:24 GMT References: <1990Oct27.003901.3533@aplcen.apl.jhu.edu> Sender: newspost@umbc3.UMBC.EDU Distribution: usa Lines: 11 In article <1990Oct27.003901.3533@aplcen.apl.jhu.edu> ejmag@aplcen (Eric Magnusson) writes: >I recently saw a unix command which will redirect stdout both to a file >and the screen. Can any body refresh my memory as to what it is? Look up the man page for tee(1). Example of usage: echo Hello World | tee filename --