Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Grepping for exact words with UNIX

Tags:

grep

unix

I want to search Exact word pattern in Unix. Example: Log.txt file contains following text:

aaa
bbb
cccaaa   ---> this should not be counted in grep output looking for aaa

I am using following code:

count=$?
count=$(grep -c aaa $EAT_Setup_BJ3/Log.txt)

Here output should be ==> 1 not 2, using above code I am getting 2 as output. Something is missing, so can any one help me for the this please?

like image 708
Bhushan J Avatar asked Apr 02 '13 07:04

Bhushan J


People also ask

How do you grep a whole word match?

Checking for the whole words in a file : By default, grep matches the given string/pattern even if it is found as a substring in a file. The -w option to grep makes it match only the whole words.

Which grep option will look for the exact match only?

grep exact match with -w Now with grep we have an argument ( -w ) which is used to grep for exact match of whole word from a file.


2 Answers

Use whole word option:

grep -c  -w aaa $EAT_Setup_BJ3/Log.txt

From the grep manual:

-w, --word-regexp

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.

As noted in the comment -w is a GNU extension. With a non GNU grep you can use the word boundaries:

grep -c "\<aaa\>" $EAT_Setup_BJ3/Log.txt
like image 118
Atropo Avatar answered Sep 24 '22 15:09

Atropo


Word boundary matching is an extension to the standard POSIX grep utility. It might be available or not. If you want to search for words portably, I suggest you look into perl instead, where you would use

perl -ne 'print if /\baaa\b/' $EAT_Setup_BJ3/Log.txt
like image 29
Jens Avatar answered Sep 24 '22 15:09

Jens