Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Multiple Random words from the terminal' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Multiple Random words from the terminal
Authored by: sophistry on Mar 14, '03 11:27:45AM

Looking over the old entries... here's some more fun to have with the
dictionary. This script lets you get groups of words all of the same
length:

jot -r -c 1000000 a z | rs -g 0 6 | sort | join /usr/share/dict/words - |
uniq



[ Reply to This | # ]