↧
Answer by markgraf for grep for pattern
From https://www.gnu.org/software/grep/manual/html_node/Usage.html Why does grep report “Binary file matches”? If grep listed all matching “lines” from a binary file, it would probably generate output...
View Articlegrep for pattern
I have a file where I want to grep for an md5 hash. I was able to do that but how can I display the match to stdout? When I do grep -e "[0-9a-f]\{32\}" file I just get: Binary file file matches. Is...
View Article