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
반응형
'Linux' 카테고리의 다른 글
[Linux] grep 명령어 복수파일 검색 (0) | 2023.02.28 |
---|---|
[Linux] VI 에디터에서 시스템 클립보드로 복사하는 방법 (0) | 2021.12.09 |
[Linux] su 계정 전환 시 This account is currently not available (0) | 2021.11.05 |
[Linux] 버전 및 릴리즈 정보 확인 방법 (0) | 2021.09.24 |
[Nginx] conf 설정 후 index.php 접속시 파일이 다운로드 될때 (0) | 2021.05.08 |