1.1 概述
grep主要用于查找关键字匹配的行1.2 基本语法 1.2.1 语法 [root@rhel ~]# grep [参数] 配置模式 文件 1.2.2 参数 [root@rhel ~]# grep [参数] 配置模式 文件 参数 -i:忽略大小写 -v:取反匹配 -w:匹配单词 --color 显示颜色1.3 Grep使用
[root@rhel ~]# grep root /etc/passwd 在passwd文件中过滤出存在root的行root:x:0:0:root:/root:/bin/bashoperator:x:11:0:operator:/root:/sbin/nologin[root@rhel ~]# grep --color root /etc/passwd 匹配的关键字显示颜色root:x:0:0:root:/root:/bin/bashoperator:x:11:0:operator:/root:/sbin/nologin [root@rhel ~]# grep -v root /etc/passwd 匹配结果取反bin:x:1:1:bin:/bin:/sbin/nologindaemon:x:2:2:daemon:/sbin:/sbin/nologin