Questa è una vecchia domanda e ha avuto risposta, ma ho pensato di mettere qui l'opzione --binary-files=text per chiunque voglia usarla. L'opzione -I ignora il file binario ma se vuoi che grep tratti il file binario come un file di testo usa --binary-files=text in questo modo:
bash$ grep -i reset mediaLog*
Binary file mediaLog_dc1.txt matches
bash$ grep --binary-files=text -i reset mediaLog*
mediaLog_dc1.txt:2016-06-29 15:46:02,470 - Media [uploadChunk ,315] - ERROR - ('Connection aborted.', error(104, 'Connection reset by peer'))
mediaLog_dc1.txt:ConnectionError: ('Connection aborted.', error(104, 'Connection reset by peer'))
bash$
Ci sono tre opzioni che puoi usare. -I
è escludere i file binari in grep. Altri sono per numeri di riga e nomi di file.
grep -I -n -H
-I -- process a binary file as if it did not contain matching data;
-n -- prefix each line of output with the 1-based line number within its input file
-H -- print the file name for each match
Quindi questo potrebbe essere un modo per eseguire grep:
grep -InH your-word *