IT/리눅스마스터1급

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

알콩달콩아빠 2023. 12. 9. 17:46
728x90
반응형

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

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

 

$ grep "search_text" search_file.txt

Binary file (standard input) matches

 

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

 

$ grep "search_text" search_file.txt -a

출처: https://yoshikixdrum.tistory.com/202 [평범한 이야기들:티스토리]

728x90
반응형