bash – Grep binary file matches. How to get normal grep output?
bash – Grep binary file matches. How to get normal grep output?
Try:
grep --text
or
grep -a
for short. This is equivalent to --binary-files=text
and it should show the matches in binary files.