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 you 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 it possible? Or using another/combination of tools?

Thanks,

Neil

link|improve this question
This question really belongs to 'superuser' I think – notnoop Oct 10 '09 at 0:59
Not superuser, because grep is the wrong tool, and one of the unix mini-languages (awk was my first choice, but ghostdog74 beat me to it) is the right tool. – dmckee Oct 10 '09 at 1:26
5  
this is also programming – iamrohitbanga Oct 10 '09 at 15:19
feedback

7 Answers

Try grep -o

grep -oh "\w*th\w*" *

Edit: matching from Phil's comment

link|improve this answer
That doesn't work. – user181548 Oct 10 '09 at 1:07
I've been upvoted but I just realised it doesn't work. Maybe some regex will do it. This only outputs a "th" for each match. – Dan Midwood Oct 10 '09 at 1:08
2  
Oh, right. You just need to match all the word-constituent characters on either side: grep -o "\w*th\w*" – Phil Oct 10 '09 at 1:20
the words 'another' and 'other' appears in your output due to \w* in front of th. – ghostdog74 Oct 10 '09 at 1:29
@ghostdog74 I assumed the another and other were the filenames, not the content of a file. – Dan Midwood Oct 10 '09 at 1:35
show 6 more comments
feedback
Just awk...no need combination of tools

# awk '{for(i=1;i<=NF;i++){if($i~/^th/){print $i}}}' file
the
the
the
this
thoroughly
link|improve this answer
Yuo: grep is just the wrong tool for this job. – dmckee Oct 10 '09 at 1:31
feedback

You could translate spaces to newlines and then grep, e.g.:

cat * | tr ' ' '\n' | grep th
link|improve this answer
Nice. I should have thought of that. – dmckee Oct 10 '09 at 1:51
2  
no need cat. tr ' ' '\n' < file | grep th. Slow for big files. – ghostdog74 Oct 10 '09 at 2:00
This didn't work. The output still contained the filename and the entire line from the file that contained the match. Anyway, one of the other solutions offered worked. Thanks for the input though. – Neil Baldwin Oct 10 '09 at 8:59
@ghostdog74: good point, although if you have more than file, you'll need to use cat. @Neil Baldwin: are you sure you typed it in right? When there's only one input file (stdin in this case), grep doesn't print the filename. – Adam Rosenfield Oct 10 '09 at 14:58
@Adam - yes, sorry Adam, it does work with one file but not multiple. – Neil Baldwin Oct 10 '09 at 15:52
show 2 more comments
feedback

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:

# ack-grep -ho "\bth.*?\b" *

the
the
the
this
thoroughly

If you omit the -h flag you get:

# ack-grep -o "\bth.*?\b" *

some-other-text-file
1:the

some-text-file
1:the
the

yet-another-text-file
1:this
thoroughly

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:

# echo "bug: 1, id: 5, time: 12/27/2010" > test-file
# ack-grep -ho "bug: (\d*), id: (\d*), time: (.*)" --output '$1, $2, $3' test-file

1, 5, 12/27/2010
link|improve this answer
feedback

cat *-text-file | grep -Eio "th[a-z]+"

link|improve this answer
feedback

You could pipe your grep output into Perl like this:

grep "th" * | perl -n -e'while(/(\w*th\w*)/g) {print "$1\n"}'
link|improve this answer
1  
that won't give the correct result. also, if using Perl, no need to use grep. do everything in Perl. – ghostdog74 Oct 10 '09 at 1:15
Thanks for pointing out the error, ghostdog74. I have changed it to print all the words on the line, not just the first. – user181548 Oct 10 '09 at 1:26
like i said, grep is not necessary. perl -n -e'while(/(\s+th\w*)/g) {print "$1\n"}' file – ghostdog74 Oct 10 '09 at 1:30
I don't think it's important here to avoid using grep. – user181548 Oct 10 '09 at 1:33
1  
up to you. i am just illustrating a point. If its not necessary, don't do it. that extra "|" will cost you one process more. – ghostdog74 Oct 10 '09 at 2:03
show 1 more comment
feedback

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:

cat fruitlist.txt
apple
apples
pineapple
apple-
apple-fruit
fruit-apple

grep -w apple fruitlist.txt
apple
apple-
apple-fruit
fruit-apple
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.