Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a bunch of log files. I need to find out how many times a string occurs in all files.

grep -c string *

retruns

...
file1:1
file2:0
file3:0
...

Using pipe I was able to get only files that have one or more occurrence:

grep -c string * | grep -v :0

...
file4:5
file5:1
file6:2
...

How to get only the combined count? (If it returns file4:5, file5:1, file6:2 I want to get back 8.)

share|improve this question

8 Answers

up vote 43 down vote accepted
cat * | grep -c string
share|improve this answer
3  
you where 52 seconds faster than me ;-) – Joachim Sauer Dec 16 '08 at 12:18
1  
This has the same limitation that it counts multiple occurrences on one line only once. I am guessing that this behavior is OK in this case, though. – Michael Haren Dec 16 '08 at 12:22
Thanks! That did the trick. – Željko Filipin Dec 16 '08 at 12:23
1  
I'd rather do grep -c string<* So just replacing the space with a less than. – JamesM-SiteGen Jan 4 '12 at 2:08
2  
Does not address multiple occurrences on a line – bluesman May 9 '12 at 16:14
show 2 more comments

This works for multiple occurrences per line:

grep -o string * | wc -l
share|improve this answer
cat * | grep -c string

One of the rare useful applications of cat.

share|improve this answer

Instead of using -c, just pipe it to wc -l.

grep string * | wc -l

This will list each occurrence on a single line and then count the number of lines.

This will miss instances where the string occurs 2+ times on one line, though.

share|improve this answer
1  
Piping to "wc -l" works also nicely together with "grep -r 'test' ." which scans recursively all files for the string 'test' in all directories below the current one. – Stephan Kristyn Dec 13 '11 at 15:07
grep -oh string * | wc -w

will count multiple occurrences in a line

share|improve this answer

Obligatory Awk solution:

grep -c string * | awk 'BEGIN{FS=":"}{x+=$2}END{print x}'

Take care if your file names include ":" though.

share|improve this answer

The Awk solution which also handles file names including colons:

grep -c string * | sed -r 's/^.*://' | awk 'BEGIN{}{x+=$1}END{print x}'

Keep in mind that this method still does not find multiple occurrences of string on the same line.

share|improve this answer

something different than all answers.

perl -lne '$count++ for m/<pattern>/g;END{print $count}' *
share|improve this answer
nice to see an approach not using grep, esp as my grep (on windows) doesn't support the -o option. – David Roussel Mar 12 at 15:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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