Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!uunet!convex!connie!rdavis From: rdavis@connie.UUCP (Ray Davis) Newsgroups: comp.unix.questions Subject: Re: Awk Field Separators Message-ID: Date: 22 Aug 90 19:29:40 GMT References: <3729@se-sd.SanDiego.NCR.COM> <1990Aug22.054330.24911@iwarp.intel.com> <1673@quando.quantum.de> Distribution: comp.unix.questions Organization: Convex Computer GmbH, Frankfurt, West Germany Lines: 11 Just run the input through tr \| \ <---- there is a space after that last backslash and pipe that to your awk. Ok then, tr '|' ' ' if you prefer readability.