आप grep
फ़ाइल के माध्यम से खोजने के लिए वैसे भी उपयोग कर सकते हैं - यह वास्तव में परवाह नहीं करता है कि इनपुट फ़ाइल वास्तव में पाठ है या नहीं। 'मैन ग्रीप' से:
-a, --text
Process a binary file as if it were text; this is equivalent to the --binary-files=text option.
--binary-files=TYPE
If the first few bytes of a file indicate that the file contains binary data, assume that the file is
of type TYPE. By default, TYPE is binary, and grep normally outputs either a one-line message saying
that a binary file matches, or no message if there is no match. If TYPE is without-match, grep assumes
that a binary file does not match; this is equivalent to the -I option. If TYPE is text, grep
processes a binary file as if it were text; this is equivalent to the -a option. Warning: grep
--binary-files=text might output binary garbage, which can have nasty side effects if the output is a
terminal and if the terminal driver interprets some of it as commands.
कृपया दूसरे पैराग्राफ के अंत में सावधानी के शब्दों को चिह्नित करें। आप एक नई फ़ाइल में grep से परिणामों को पुनर्निर्देशित करना चाहते हैं और vi / कम के साथ इसकी जांच कर सकते हैं।