grep返回
原文链接:https://www.f2er.com/bash/392357.htmlBinary file test.log matches
例如
echo "line1 re \x00\r\nline2\r\nline3 re\r\n" > test.log # in zsh echo -e "line1 re \x00\r\nline2\r\nline3 re\r\n" > test.log # in bash grep re test.log
我希望结果将显示line1和line3(总共两行)。
是否可以使用tr将不可打印的数据转换为可读数据,让grep再工作?