평범한 이야기들

[리눅스] grep 했을 때 Binary file (standard input) matches 나올 때 해결방법 본문

평범한 개발 이야기/OS

[리눅스] grep 했을 때 Binary file (standard input) matches 나올 때 해결방법

songsariya 2020. 6. 25. 15:25
728x90

 파일에서 특정 문자열을 찾고자 할때 사용하는 grep

해당 파일을 텍스트 파일로 인식 하지 않고 Binary file 로 인식 할 때가 있다.

 

$ grep "search_text" search_file.txt

Binary file (standard input) matches

 

이럴 때는 -a (혹은 --text) 옵션을 이용하면 된다.

 

$ grep "search_text" search_file.txt -a
728x90
Comments