Linux

[Linux] Grep 오류 Binary file (standard input) matches

먹세 2023. 3. 3. 10:39

grep 명령시 Binary file (standard input) matches 오류는 해당 파일을 텍스트가 아닌 바이너리 파일로 인식해서 나는 오류.

cat mylog.log | grep 123
Binary file (standard input) matches

 

해당오류시에는 -a 또는 --text 옵션을 활용

cat mylog.log | grep 123 -a

cat mylog.log | grep 123 -text
반응형