Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10.1 6/24/83; site hocda.UUCP
Path: utzoo!watmath!clyde!burl!ulysses!mhuxl!houxm!hocda!grt
From: grt@hocda.UUCP (G.TOMASEVICH)
Newsgroups: net.unix
Subject: Re: how to double space text?
Message-ID: <381@hocda.UUCP>
Date: Wed, 14-Mar-84 15:42:26 EST
Article-I.D.: hocda.381
Posted: Wed Mar 14 15:42:26 1984
Date-Received: Thu, 15-Mar-84 01:31:57 EST
Organization: Bell Labs, Holmdel
Lines: 6

The following Bourne shell script double-spaces text.

while read line
do
	echo $line; echo
done