位置锁定
^:锚定行首,此字符后面的任意内容必须出现在行首。
例子:]# 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
原文链接:https://www.f2er.com/regex/361900.html