grep ignorer le fichier binaire

# Process a binary file as if it did not contain matching data. 
# Equivalent to grep --binary-files=without-match
grep -I

# Example
find . | xargs grep -I "string-to-find";
Sore Snail