grep_bin
can search recursively a directory or multiple files for a sequence of bytes or ascii string.
$ grep_bin test.bin fffe
$ grep_bin ~/Downloads FFFE
$ grep_bin ~/Downloads FFfe0000 -f mp3
$ grep_bin test.bin "Hello World"
$ grep_bin test1.bin test2.bin fFFe
``` $ grep_bin -h
grepbin 1.0.2 LaBatata101 labatata101@linuxmail.org Searches for a sequence of bytes or a ASCII string in a binary file. If a directory is provided grepbin will search every file in the directory recursively.
USAGE:
grep_bin [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-f
ARGS:
$ git clone https://github.com/LaBatata101/grep_bin
$ cd grep_bin/
$ cargo build --release
cargo install grep_bin