What does \b mean in a grep pattern?
\b
in a regular expression means "word boundary".
With this grep command, you are searching for all words i
in the file linux.txt
. i
can be at the beginning of a line or at the end, or between two space characters in a sentence.