标签:linu size image http 文件 字符 常用用法 数据 颜色
【简介】
grep:一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来
【grep常用用法】
[root@www ~]# grep [-acinv] [--color=auto] ‘搜寻字符串‘ filename
选项与参数:
-a :将 binary 文件以 text 文件的方式搜寻数据
-c :计算找到 ‘搜寻字符串‘ 的次数
-i :忽略大小写的不同
-n :输出行号
-v :反向选择,亦即显示出没有 ‘搜寻字符串‘ 内容的那一行!
--color=auto :‘搜寻字符串‘ 显示颜色
【实例】
# 打印有 "hello"的行,不区分大小写,标行号、颜色 grep -in --color=auto hello yy.log
#打印没有"hello"的行 [service@ndl-bass-ys-vm-129-186 wy]$ grep -v hello yy.log ERROR suscess HELLO # 打印没有 hello 和 error 的行 [service@ndl-bass-ys-vm-129-186 wy]$ grep -v hello yy.log |grep -iv error HELLO
标签:linu size image http 文件 字符 常用用法 数据 颜色
原文地址:http://www.cnblogs.com/bxbyy/p/7799638.html