How to grep a string in a binary file?
Answer:
Assume you have a binary file "foo.bin", you can combine strings with the grep command.
strings foo.bin | grep bar
Related posts:
Post a Comment