Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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";
Source by bytefreaks.net #
 
PREVIOUS NEXT
Tagged: #grep #ignore #binary #file
ADD COMMENT
Topic
Name
9+9 =