Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

If I have the file foo:

read_from_buffer
read_from_buffer_and_file
write_to_buffer
some_other_function

then using

cat foo | grep 'read_from_buffer'

will list 2 lines:

read_from_buffer
read_from_buffer_and_file

But I want only exact matches... How to tell grep that different character must come than character: 0-9a-zA-Z_

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
271 views
Welcome To Ask or Share your Answers For Others

1 Answer

Use this:

grep -w 'read_from_buffer' foo

From man grep:

-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. Similarly, it must be either at the end of the line or followed by a non-word constituent character. Word-constituent characters are letters, digits, and the underscore.

or

-x, --line-regexp: Select only those matches that exactly match the whole line. (-x is specified by POSIX.)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...