grep及正则表达式系列---04

位置锁定

   ^:锚定行首,此字符后面的任意内容必须出现在行首。

       例子:]# 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









你可能感兴趣的:(正则表达式,grep,查找文件,行首行尾文件内容查找)