grep
Dù sao bạn cũng có thể sử dụng để tìm kiếm thông qua tệp - nó không thực sự quan tâm liệu tệp đầu vào có thực sự là văn bản hay không. Từ 'người đàn ông 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.
Vui lòng đánh dấu các từ thận trọng ở cuối đoạn thứ hai. Bạn có thể muốn chuyển hướng kết quả từ grep vào một tệp mới và kiểm tra điều này với vi / less.