zegrep命令是一个文件字符串过滤工具,可以使用zegrep在压缩文件中多次搜索相对应的文件名与内容。
语法格式:zegrep [参数] [文件路径]
常用参数:
-n | 搜索显示行 |
-l | 列出包含多个模式的那些压缩文件的文件名 |
参考实例
使用zegrep过滤linuxprobe.txt中xtuos.com字符:
[root@xtuos.com ~]# zegrep "xtuos.com" linuxprobe.txt
使用zegrep搜索压缩文件中的多重模式:
[root@xtuos.com ~]# zegrep 'shah|root|apache' linuxprobe.gz
使用压缩文件中的-n选项在文件中搜索多个模式以及相关的行号:
[root@xtuos.com ~]# zegrep -n 'shah|root|apache' linuxprobe.gz
使用-l选项列出包含多个模式的那些压缩文件的文件名:
[root@xtuos.com ~]# zegrep -l 'shah|root|apache' *.gz
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun223707.html