grep "key" xxx.log时输出
Binary file xxx.log matches
百度了一下:grep认为这是二进制文件,解决方案:grep -a。
grep -a "key" xxx.log
本文介绍了解决grep在处理疑似二进制文件时出现的匹配问题的方法。通过使用grep的-a选项,可以强制grep将二进制文件视为文本文件进行关键字搜索。
grep "key" xxx.log时输出
Binary file xxx.log matches
百度了一下:grep认为这是二进制文件,解决方案:grep -a。
grep -a "key" xxx.log
4万+
1186
1893

被折叠的 条评论
为什么被折叠?