Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!


Click here to return to the 'A command line crossword solving assistant' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
A command line crossword solving assistant
Authored by: kholburn on Sat, Mar 1 2008 at 2:05PM PST
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 | # ]