Is there a way to make grep output "words" from files that match the search expression?
If I want to find all the instances of, say, "th" in a number of files, I can do:
grep "th" *
but the output will be something like (bold is by me);
some-text-file : the cat sat on the mat some-other-text-file : the quick brown fox yet-another-text-file : i hope this explains it thoroughly
What I want it to output, using the same search, is:
the
the
the
this
thoroughly
Is this possible using grep? Or using another combination of tools?
You could pipe your grep output into Perl like this:
I was unsatisfied with awk's hard to remember syntax but I liked the idea of using one utility to do this.
It seems like ack (or ack-grep if you use Ubuntu) can do this easily:
If you omit the -h flag you get:
As a bonus, you can use the
--output
flag to do this for more complex searches with just about the easiest syntax I've found:Cross distribution safe answer (including windows minGW?)
If your using older versions of grep (like 2.4.2) which does not include the -o option. Use the above. Else use the simpler to maintain version below.
Linux cross distribution safe answer
To summaries
-oh
outputs the regular expression matches to the file content (and not its filename), just like how you would expect regular expression to work in vim/etc... What word or regular expression you would be searching for then, is up to you! As long as you remain to POSIX and not perl syntax (refer below)More from the manual for grep
The reason why the original answer does not work for everyone
The usage of
\w
varies from platform to platform, as its an extended "perl" syntax. As such, those grep installation that is limited to work with POSIX character classes uses[[:alpha:]]
and not its perl equivalent of\w
. See the Wikipedia page on regular expression for moreUltimately, the POSIX answer above will be alot more reliable regardless of platform (being the original) for grep
As for support of grep without -o option, the first grep outputs the relevant lines, the tr splits the spaces to new lines, the final grep filters only for the respective lines.
(PS: I know most platforms by now, would have been patched for \w.... but there are always those that lag behind)
Credit for the "-o" workaround from @AdamRosenfield answer
Just
awk
, no need combination of tools.Excerpt from grep man page:
-w: Select only those lines containing matches that form whole words. The test is that the matching substring must either be at the beginning of the line, or preceded by a non-word constituent character.
You can also try pcregrep. There is also a
-w
option in grep, but in some cases it doesn't work as expected.From Wikipedia: