-w 精准匹配 只有‘root‘ 这个关键字的行
[[email protected] sh]# cat root.sh #!/bin/bash root [[email protected] sh]# grep -w ‘root‘ root.sh root
-q 表示只过滤但不在终端显示出来
grep -q root root.sh
-v 过滤出 不带 ‘abc‘的行
[[email protected] sh]# cat root.sh #!/bin/bash root abc [[email protected] sh]# [[email protected] sh]# grep -v ‘abc‘ root.sh #!/bin/bash root [[email protected] sh]#
时间: 2024-10-10 16:03:00