Re: Crossword helper
On Sun, 20 Jul 2008, Raphael Mankin wrote:-
egrep 'a..o' /usr/share/dict/words
produces 15738 matches.
For all words containing 5 or more vowels in a row (y is a consonant)
egrep '[aeiou][aeiou][aeiou][aeiou][aeiou]' /usr/share/dict/words
Or the same with much less typing:
egrep '[aeiou]{5,}' /usr/share/dict/words
Regards,
David Bolt
--
Team Acorn:
http://www.distributed.net/ OGR-P2 @ ~100Mnodes RC5-72 @ ~15Mkeys
SUSE 10.1 32 | | openSUSE 10.3 32bit | openSUSE 11.0 32bit
| openSUSE 10.2 64bit | openSUSE 10.3 64bit | openSUSE 11.0 64bit
RISC OS 3.6 | TOS 4.02 | openSUSE 10.3 PPC | RISC OS 3.11
.
Relevant Pages
- Re: Attention Spanish speakers
... Russian doesn't have two separate letters for the two "l" consonants. ... the hard/soft distinction depends on the following vowel. ... ten vowels fall naturally into two sets of five. ... preceding consonant, ... (alt.usage.english) - Re: The Hamza and Alif Confusion in Arabic
... > Although the Arabic alphabet is understood as a consonant alphabet ... short vowels are not admitted their own ... > a very important consonant, not only this position but also to be part ... Hamza is graphically small (it has the shape of 3Ain and is near ... (sci.lang) - Re: Japanese katakana phonetic patterns?
... to angel dust. ... Middle English stressed long vowels in antepenults were ... It's long because short stressed vowels followed by /ld/, ... followed the consonant group. ... (sci.lang) - Re: does any romance language neutralize the difference between dental and palatal l?
... length of vowels seems far from irrelevant ... because even if you know someone Burriesci and he/she/ ... I hope we have not to discuss the Italian pronounciation of Americans</ ... writing is a long consonant in speech. ... (sci.lang) - Re: Learning to Speak Arabic
... As I have said before, diphthongs usually pattern like long vowels, so ... diphthong phonemes if everything can be explained with fewer phonemes? ... consonant, ... (sci.lang) |
|