标签:解决方案 linux 二进制
grep "key" xxx.log时输出
Binary file xxx.log matches
百度了一下:grep认为这是二进制文件,解决方案:grep -a。
grep -a "key" xxx.log
grep:Binary file (standard input) matches
原文地址:http://blog.csdn.net/ssllkkyyaa/article/details/40780661