标签:host gre div log col root cal bsp nbsp
-w 精准匹配 只有‘root‘ 这个关键字的行
[root@localhost sh]# cat root.sh #!/bin/bash root [root@localhost sh]# grep -w ‘root‘ root.sh root
-q 表示只过滤但不在终端显示出来
grep -q root root.sh
-v 过滤出 不带 ‘abc‘的行
[root@localhost sh]# cat root.sh #!/bin/bash root abc [root@localhost sh]# [root@localhost sh]# grep -v ‘abc‘ root.sh #!/bin/bash root [root@localhost sh]#
标签:host gre div log col root cal bsp nbsp
原文地址:http://www.cnblogs.com/mingerlcm/p/7804586.html