grep的时候Binary file matches 怎么解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了grep的时候Binary file matches 怎么解决相关的知识,希望对你有一定的参考价值。

操作 grep "xxx" a.log

结果 Binary file a.log matches

原因:grep认为a.log是二进制文件

解决方法:grep -a "xxx" a.log

可以看看grep -a参数的功能

[appadmin@test3 ~/tmp]$ grep --help |grep '/-a'
-a, --text equivalent to --binary-files=text

即,让二进制文件等价于文本文件

注:zgrep遇到同类问题时,解决方法是一样的
参考技术A 操作 grep "xxx" a.log

结果 Binary file a.log matches

原因:grep认为a.log是二进制文件

解决方法:grep -a "xxx" a.log

可以看看grep -a参数的功能

[appadmin@test3 ~/tmp]$ grep --help |grep '/-a'
-a, --text equivalent to --binary-files=text

即,让二进制文件等价于文本文件

注:zgrep遇到同类问题时,解决方法是一样的

以上是关于grep的时候Binary file matches 怎么解决的主要内容,如果未能解决你的问题,请参考以下文章

grep的时候Binary file matches 怎么解决

grep的时候Binary file matches 怎么解决

grep 出错提示grep: (standard input): binary file matches

grep:Binary file (standard input) matches

grep报Binary file standard input matches

grep报Binary file standard input matches