Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10.1 6/24/83; site whuxle.UUCP
Path: utzoo!watmath!clyde!burl!we13!ihnp4!whuxle!bjb
From: bjb@whuxle.UUCP
Newsgroups: net.unix
Subject: Re: inittab entries - (nf)
Message-ID: <232@whuxle.UUCP>
Date: Mon, 30-Jan-84 20:56:17 EST
Article-I.D.: whuxle.232
Posted: Mon Jan 30 20:56:17 1984
Date-Received: Sun, 5-Feb-84 12:23:39 EST
Sender: bjb@whuxle.UUCP
Organization: Bell Labs, Whippany
Lines: 14

#R:denelcor:-28700:whuxle:25800001:000:377
whuxle!bjb    Jan 30 20:56:00 1984

re: having a getty set a baud rate and exit..

What you're asking for probably won't work. As soon as the getty
terminates and the file descriptor (for the tty) is closed, the
baud rate will be lost.  If you want to do something like a
"poor persons" line printer driver, something like the
following may work...
	( stty 9600; cat $file ) < /dev/ttyxx > /dev/ttyxx

		B. Beare