text 형태가 아닌 파일을 grep 했을 때 발생하는 에러.

> cat engine.log | grep 502

> Binary file (standard input) matches 

 

파일 형식은 아래와 같이 확인이 가능

> file engine.log

> engine.log: ASCII English text, with very long lines

출처 : https://unix.stackexchange.com/questions/335716/grep-returns-binary-file-standard-input-matches-when-trying-to-find-a-string

 

 

-a 옵션을 붙여주어 해결

> cat engine.log | grep 502 -a

> 결과생략

 

출처 : https://bbs.archlinux.org/viewtopic.php?id=32328

반응형

+ Recent posts