You are not logged in.
$ echo $LANG
en_US.UTF-8
$ grep "^stress\b" data/bom-nerfile | uniq
stress O
stressÉ O
stress Owhy does the second result show up? and how can i prevent it?
< Daenyth> and he works prolifically
4 8 15 16 23 42
Offline
http://savannah.gnu.org/bugs/?29537
Here is an extended regexp that is almost the same. It consumes the character after it though, and :punct: has _, that \b doesn't match.
grep -E '^stress([[:blank:][:punct:]]|$)'
Or sed:
sed -n '/^stress\b/p'
Offline