আপনি 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.
সাবধানতার শব্দটিকে দ্বিতীয় অনুচ্ছেদের শেষে চিহ্নিত করুন। আপনি গ্রেপ থেকে ফলাফলগুলি একটি নতুন ফাইলে পুনর্নির্দেশ করতে এবং vi / কম দিয়ে এটি পরীক্ষা করতে চাইতে পারেন।