Rust version of the classic command line tool grep
Rust-lang should be installed in your system.
git clone https://github.com/niranjana687/minigrep.git
cd minigrep
cargo build --release
./target/release/minigrep -<options> nemo find-nemo-the-movie.txt
Example - ./target/release/minigrep -i nemo find-nemo-the-movie.txt
cargo doc --no-deps --open
cargo test
This is not a drop in replacement for the good old grep-like commands. This is written for the sake of learning Rust-lang.