Subject: Re: diskless boot fails on Super COMPstation 20S
To: None <kpneal@pobox.com, port-sparc@NetBSD.ORG>
From: Chris Torek <torek@BSDI.COM>
List: port-sparc
Date: 04/08/1997 17:21:40
>Anybody feel like writing a script to generate all possible
>"words" and pass it against a spelling checker? No? Ah well.

Script?  Who needs a script?

	grep '^[abcdefol]*$' /usr/share/dict/web2

(o = 0 and l = 1, more or less).

Keeping just the 8 letter words (grep for ^........$, or use
the above with extended REs and {8}):

	accolade
	beballed
	bedabble
	caboodle
	callable
	cocobolo
	collocal
	colocola
	deadfall
	dealable
	dodecade
	dollface
	faceable
	feedable
	feelable
	fellable
	foldable
	laceleaf
	leadable
	locofoco

You can get more inventive and combine words, of course (getting
stuff like deadbeef and fadedfad).

Chris