grep ignore binary code example
Example: grep ignore binary file
# 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";
# 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";