Subject: Re: Off topic, read if you want to
To: None <paul@pgoyette.bdt.com>
From: Masami and Ken Nakata <masami@fa2.so-net.or.jp>
List: port-mac68k
Date: 03/27/1997 04:42:31
On Wed, 26 Mar 1997 04:50:29 -0800 (PST),
Paul Goyette <paul@pgoyette.bdt.com> wrote:
> Actually, you can do it like this (having just tried it):
> 
> # sed 's/\&/\\\
> /' filename1 >filename2

Although I realize it may not be exactly what he wants, you can also
do it with tr:

tr '&' '\n' <filename1 >filename2

Ken