A simplified version of grep, written in Rust.
The rust compiler must be present on your system and the cargo executable must be in your PATH.
$ git clone https://github.com/omega1510/hgrep.git
$ cd hgrep
$ cargo build --releaseThis places an executable in target/release/.
Usage: hgrep [options] <query> <filename>
Options:
-h, --help Display this message.
-i, --ignore-case Search case insensitively.The framework for this program was created following the Rust Book. However, I have made some modifications and improvements. This program is still very well a learning exercise in building CLIs with Rust.