Path: utzoo!attcan!uunet!tut.cis.ohio-state.edu!n8emr!uncle!donlash From: donlash@uncle.UUCP (Donald Lashomb) Newsgroups: comp.unix.questions Subject: Re: Piping stderr in Korn and/or Bourne shell Keywords: redirection, pipe, ksh Message-ID: <789@uncle.UUCP> Date: 6 Apr 90 22:47:17 GMT References: <3620@hcx1.SSD.CSD.HARRIS.COM> Reply-To: donlash@uncle.UUCP (Donald Lashomb) Organization: U.N.C.L.E. Lines: 12 In article <3620@hcx1.SSD.CSD.HARRIS.COM> brad@SSD.CSD.HARRIS.COM (Brad Appleton) writes: [ ] =I have a program that is supposed to read error output from other =programs. I want to pipe stderr to this program WITHOUT piping =stdin as well. I have not been able to find this in TFM (I have [ ] This works for me: tst 2>&1 >outfile | whatever -Don