本文介绍了如何从.gz文件中搜索特定的字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从包含文本文件的.gz文件中搜索特定字符串,而无需在linux终端中提取.我知道如何使用grep "text to search" ./myfile.txt
从文本文件中搜索字符串.但是如何使它适用于.gz文件呢?
I want to search for a particular string from a .gz file containing a text file without extracting in linux terminal. I know how to search for a string from a text file using grep "text to search" ./myfile.txt
. But how to make it work for .gz files?
推荐答案
gunzip -c mygzfile.gz | grep "string to be searched"
但这仅在.gz文件包含文本文件的情况下有效.
But this would only work if the .gz file contains text file which is true in your case.
这篇关于如何从.gz文件中搜索特定的字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!