位置锁定
^:锚定行首,此字符后面的任意内容必须出现在行首。
例子:]# grep ‘^r..t‘ /etc/passwd
root:x:0:0:root:/root:/bin/bash
$:锚定行尾,此字符前面的任意内容必须出现在行尾。
例子:# grep ‘w$‘ /etc/inittab
# For information on how to write upstart event handlers, or how
查找以b开头以h结尾的:# grep ‘b..h$‘ /etc/passwd
root:x:0:0:root:/root:/bin/bash
^$:空白行。
例子:# grep ‘^$‘ /etc/selinux/config
本文出自 “空谷幽兰” 博客,请务必保留此出处http://2489843.blog.51cto.com/2479843/1386695
grep及正则表达式系列---04,布布扣,bubuko.com
原文:http://2489843.blog.51cto.com/2479843/1386695