有人可以解释/帮助我理解BSD grep和GNU grep之间这种区别背后的逻辑吗?我在比赛下面添加了插入符号。
$ grep --version
grep (BSD grep) 2.5.1-FreeBSD
$ cat t1
admin:*:80:root
$ grep '\<.' t1
admin:*:80:root
^^^^^ ^^ ^^^^
与
$ grep --version
GNU grep 2.6.3
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
$ cat t1
admin:*:80:root
$ grep '\<.' t1
admin:*:80:root
^ ^ ^
似乎GNU grep正确,而BSD grep却没有。我以为\<
应该得到单词边界?注意grep '\<ad' t1
似乎在两个版本中都得到了相同的结果,例如:
$ cat t2
admin:*:80:root
sadmin:*:81:root
$ grep '\<ad' t2
admin:*:80:root
^^
是什么给出了?
提前致谢。
理查德