Unix & Linux Stack Exchange is a question and answer site for
users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.
It may be obvious, but just in case it is not, here is a note on the (significant) difference between \<...\> and \b...\b: `You can get unexpected results if you assume the two patterns behave the same... see this link – Peter.OOct 16 '11 at 18:23
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.
can be in the begining or in the end?? isn't supposed to be only between spaces?? – amyassinOct 16 '11 at 19:43
1
I don't find more details about that. But trying by hand with a file containing the lines "i foo" and "bar i", the regexp provided to the grep command above is matching both of them. – uloBasEIOct 16 '11 at 19:53
More precisely, not only space, but any non-word character. Just like the -w--word-regexp switch does: grep -w "i" linux.txt. For example a line like "<i>italic</i>" also matches. – manatworkOct 17 '11 at 6:48
\<...\>and\b...\b: `You can get unexpected results if you assume the two patterns behave the same... see this link – Peter.O Oct 16 '11 at 18:23