码迷,mamicode.com
首页 > 其他好文 > 详细

过滤三剑客之grep专题

时间:2014-12-05 19:46:07      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:awk   三剑客   grep   color   

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专题

标签:awk   三剑客   grep   color   

原文地址:http://hzyan.blog.51cto.com/9617993/1586571

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!