首页 > 代码库 > 过滤三剑客之grep专题

过滤三剑客之grep专题

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/bash
operator:x:11:0:operator:/root:/sbin/nologin
[root@rhel ~]# grep --color root /etc/passwd 匹配的关键字显示颜色
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
[root@rhel ~]# grep -v root /etc/passwd 匹配结果取反
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin

本文出自 “老韩技术笔记” 博客,请务必保留此出处http://hzyan.blog.51cto.com/9617993/1586571

过滤三剑客之grep专题