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"'
Search for an ASCII string with quotes included: $ grep_bin test.bin '"This is a \"quote\""'
$ grep_bin test1.bin test2.bin fFFe
$ grep_bin README.md "information" -c 32
Output:
README.md 00000320: 73 20 68 65 6C 70 20 69 6E 66 6F 72 6D 61 74 69 6F 6E 0A 0A 20 20 20 20 2D 56 2C 20 2D 2D 76 65 |s help information.. -V, --ve| 00000360: 73 69 6F 6E 20 69 6E 66 6F 72 6D 61 74 69 6F 6E 0A 0A 0A 4F 50 54 49 4F 4E 53 3A 0A 20 20 20 20 |sion information...OPTIONS:. |
``` $ grep_bin -h
grep_bin 1.1.1 LaBatata101 labatata101@linuxmail.org Searches recursively a directory or multiple files for a sequence of bytes or ASCII string.
USAGE:
grep_bin [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-c
ARGS:
$ git clone https://github.com/LaBatata101/grep_bin
$ cd grep_bin/
$ cargo build --release
The final binary will be in target/release/
cargo install grep_bin