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


Click here to return to the 'A command line crossword solving assistant' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A command line crossword solving assistant
Authored by: kholburn on Mar 01, '08 02:05:25PM
I'm not sure what the echo and backticks are for. Why not simply use:

grep -w $text /usr/share/dict/words
If you really want the result in one line try something like:

grep -w $text /usr/share/dict/words | tr -d '\n'


[ Reply to This | # ]