zgrep用法

http://manpages.ubuntu.com/manpages/trusty/man1/zgrep.1.html

NAME

       Zgrep - search compressed files for a regular expression

SYNOPSIS

       zgrep [options] <pattern> [files]

DESCRIPTION

       Zgrep is a front end to the grep program that allows transparent search
       on any combination of compressed and non-compressed files. If any given
       file  is  compressed, its uncompressed content is used. If a given file
       does not exist, and its name  does  not  end  with  one  of  the  known
       extensions,  zgrep tries the compressed file names corresponding to the
       supported compressors. If no files are specified,  data  is  read  from
       standard input, decompressed if needed, and fed to grep. Data read from
       standard input must be of  the  same  type;  all  uncompressed  or  all
       compressed  with  the  same  compressor.  The supported compressors are
       bzip2, gzip, lzip and xz.

       Exit status is 0 if match, 1 if no match, 2 if trouble.

OPTIONS

       --help display this help and exit

       -V, --version
              output version information and exit

       -a, --text
              treat all files as text

       -A, --after-context=<n>
              print <n> lines of trailing context

       -b, --byte-offset
              print the byte offset of each line

       -B, --before-context=<n>
              print <n> lines of leading context

       -c, --count
              only print a count of matching lines per file

       -C, --context=<n>
              print <n> lines of output context

       -e, --regexp=<pattern>
              use <pattern> as the pattern to match

       -E, --extended-regexp
              <pattern> is an extended regular expression

       -f, --file=<file>
              obtain patterns from <file>

       -F, --fixed-strings
              <pattern> is a set of newline-separated strings

       -h, --no-filename
              suppress the prefixing filename on output

       -H, --with-filename
              print the filename for each match

       -i, --ignore-case
              ignore case distinctions

       -I     ignore binary files

       -l, --files-with-matches
              only print names of files containing matches

       -L, --files-without-match
              only print names of files containing no matches

       -m, --max-count=<n>
              stop after <n> matches

       -n, --line-number
              print the line number of each line

       -o, --only-matching
              show only the part of a line matching <pattern>

       -q, --quiet
              suppress all messages

       -r, --recursive
              operate recursively on directories

       -s, --no-messages
              suppress error messages

       -v, --invert-match
              select non-matching lines

       --verbose
              verbose mode (show error messages)

       -w, --word-regexp
              match only whole words

       -x, --line-regexp
              match only whole lines
时间: 2024-12-17 05:23:04

zgrep用法的相关文章

12个 Linux 中 grep 命令的超级用法实例

12个 Linux 中 grep 命令的超级用法实例 你是否遇到过需要在文件中查找一个特定的字符串或者样式,但是不知道从哪儿开始?那么,就请grep来帮你吧. grep是每个Linux发行版都预装的一个强有力的文件模式搜索工具.无论何种原因,如果你的系统没有预装它的话,你可以很容易的通过系统的包管理器来安装它(Debian/Ubuntu系中的apt-get和RHEl/CentOS/Fedora系中的yum). $ sudo apt-get install grep #Debian/Ubuntu

js中获取时间new date()的用法

js中获取时间new date()的用法 获取时间:   var myDate = new Date();//获取系统当前时间 获取特定格式的时间: 1 myDate.getYear(); //获取当前年份(2位) 2 myDate.getFullYear(); //获取完整的年份(4位,1970-????) 3 myDate.getMonth(); //获取当前月份(0-11,0代表1月) 4 myDate.getDate(); //获取当前日(1-31) 5 myDate.getDay();

20.5 Shell脚本中的逻辑判断;20.6 文件目录属性判断;20.7 if特殊用法;20.8 20.9 cace判断(上下)

扩展: select用法 http://www.apelearn.com/bbs/thread-7950-1-1.html 20.5 Shell脚本中的逻辑判断 格式1:if 条件 ; then 语句; fi 1. 创建if1.sh测试脚本: [[email protected] ~]# vi if1.sh a=5,如果a大于3,满足这个条件,显示ok 添加内容: #!/bin/bash a=5 if [ $a -gt 3 ] then echo ok fi 2. 执行if1.sh脚本: [[e

20.1 Shell脚本介绍;20.2 Shell脚本结构和执行;20.3 date命令用法;20.4 Shell脚本中的变量

20.1 Shell脚本介绍 1. shell是一种脚本语言 aming_linux blog.lishiming.net 2. 可以使用逻辑判断.循环等语法 3. 可以自定义函数 4. shell是系统命令的集合 5. shell脚本可以实现自动化运维,能大大增加我们的运维效率 20.2 Shell脚本结构和执行 1. 开头(首行)需要加: #!/bin/bash 2. 以#开头的行作为解释说明: 3. 脚本的名字以.sh结尾,用于区分这是一个shell脚本 4. 执行.sh脚本方法有两种:

shell 中seq的用法 echo -n用法

用法:seq [选项]... 尾数 或:seq [选项]... 首数 尾数 或:seq [选项]... 首数 增量 尾数 从1循环到100的两种方法(bash 其它的shell没试过)for x in `seq 1 100`;do echo $x;donefor x in {1..100};do echo $x;done echo -n 不换行输出 $echo -n "123" $echo "456" 最终输出 123456 echo -e 处理特殊字符 若字符串中

sudo的用法

su -l user -C 'COMMAND' 是用user这个用户执行命令 我们一般使用sudo 这个命令 sudo [-u] user COMMAND sudo [-k] COMMAND 清除此前用户的密码. sudo的配置文件/etc/sudoers 配置项为 users    hosts=(runas)    commands users:可以是一个用户的名称也可以是一个组,也可以是一个别名 username #UID user_alias 用户别名的用法 User_Alias NETA

几招学会 Python 3 中 PyMongo 的用法

本文和大家分享的是Python3下MongoDB的存储操作相关内容,在看本文之前请确保你已经安装好了MongoDB并启动了其服务,另外安装好了Python的PyMongo库.下面进入正题,一起来看看吧,希望对大家学习Python3有所帮助. 连接MongoDB 连接MongoDB我们需要使用PyMongo库里面的MongoClient,一般来说传入MongoDB的IP及端口即可,第一个参数为地址host,第二个参数为端口port,端口如果不传默认是27017. import pymongo cl

11 css中分组选择符的用法

<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> <style type="text/css"> h1,span{color:red;} a:hover{color:#2EE926;} /*分组选择符的用法*/ </style> </head> <body&

gawk 文本处理入门用法详集

awk笔记 gawk - pattern scanning and processing language 报告生成器,可进行格式化输出,文本处理三剑客之一,是基于sed和grep功能的扩展 一般用法格式: awk [options] 'program' FILE...     program: /regular/{print} 语句之间用分号分隔    print,printf 选项: -F:指明输入时用到的字段    -v var=value:指明自定变量 awk运作方式: 逐行读入文本,并