My problem in a nutshell is that I want the list of english words that are output when I run 'strings' on a binary file. Currently the file I run it on dumps a lot of trash to the screen, and I'm only interested in words that are, well, words.
After poking around here, I see that grep -f accompanied by a Linux Dictionary File will do what I want, but it is slow.
Is there a faster alternative available, or is it really just that hard to match english words?