Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a list of number in a file with format: {integer}\n . So a possible list is:

3
12
53
23
18
32
1
4

i want to use grep to get the count of a specific number, but grep -c "1" file results 3 because it takes into account except the 1, the 12, 18 also. How can i correct this?

Although all the answers until now are logical, and i thought of them and tested before, actually nothing works:

username@domain2:~/code/***/project/random/r2$ cat out.txt
2
16
11
1
13
2
1
16
16
9
username@domain2:~/code/***/project/random/r2$ grep -Pc "^1$" out.txt
0
username@domain2:~/code/***/project/random/r2$ grep -Pc ^1$ out.txt
0
username@domain2:~/code/***/project/random/r2$ grep -c ^1$ out.txt
0
username@domain2:~/code/***/project/random/r2$ grep -c "^1$" out.txt
0
username@domain2:~/code/***/project/random/r2$ grep -xc "^1$" out.txt
0
username@domain2:~/code/***/project/random/r2$ grep -xc "1" out.txt
0
share|improve this question

4 Answers

up vote 1 down vote accepted

There a some other ways you can do this besides grep

$ cat file
3 1 2 100
12 x x x
53
23
18
32
1
4

$ awk '{for(i=1;i<=NF;i++) if ($i=="1") c++}END{print c}' file
2

$ ruby -0777 -ne 'puts $_.scan(/\b1\b/).size' file
2

$ grep -o '\b1\b' file | wc -l
2

$ tr " " "\n" < file | grep -c "\b1\b"
2
share|improve this answer
Hey, thanks! this grep command you wrote works! – Fotinopoulos Giorgos Feb 28 '11 at 13:29

Use the -x flag:

grep -xc 1 file

This is what it means:

-x, --line-regexp
     Select only those matches that exactly match the whole line.
share|improve this answer
It does not work, i have already test this and every time yields 0, but i see instances of the numbers in the file! I test both: grep -xc 1 file and grep -xc "1" file. – Fotinopoulos Giorgos Feb 28 '11 at 13:18
A caveat is that multiple instances of "1" in the current won't be matched. – kurumi Feb 28 '11 at 13:32

Use this regex...

\D1\D

...or ^1$ with multiline mode on.

Tested with RegExr and they both work.

share|improve this answer

Use e.g. ^123$ to match "Beginning of line, 123, End of line"

share|improve this answer
That returns the objects found instead of the number of occurrences. A more accurate suggestion would be, for instance, if you want to count how many 3's are in the document: grep ^3$ nums_list.txt | wc -l – karlphillip Feb 28 '11 at 13:22
Note that I only answered with a change to his regex, not a complete grep commandline. grep -c "^123$" will count occurences of 123. – Erik Feb 28 '11 at 13:25

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.