How to grep for the whole word

前端 未结 5 441
一生所求
一生所求 2020-11-30 02:48

I am using the following command to grep stuff in subdirs

find . | xargs grep -s \'s:text\'

However, this also finds stuff like

5条回答
  •  粉色の甜心
    2020-11-30 03:19

    Use \b to match on "word boundaries", which will make your search match on whole words only.

    So your grep would look something like

    grep -r "\bSTRING\b"
    

    adding color and line numbers might help too

    grep --color -rn "\bSTRING\b"
    

    From http://www.regular-expressions.info/wordboundaries.html:

    There are three different positions that qualify as word boundaries:

    • Before the first character in the string, if the first character is a word character.
    • After the last character in the string, if the last character is a word character.
    • Between two characters in the string, where one is a word character and the other is not a word character.

提交回复
热议问题