1 unstable release
0.1.0 | Nov 1, 2022 |
---|
#57 in #mini-grep
6KB
96 lines
Minigrep
Description
Command Line Tool simulating basic functionalities of grep. Made as part of Rust Book reading and learning from it. With added github actions pipeline for testing and building the project.
How to
Case sensitive search
cargo run -- <query parameter> <file_path parameter>
Case insensitive search
IGNORE_CASE=1 cargo run -- <query parameter> <file_path parameter>
lib.rs
:
minigrep_lswarss
minigrep_lswarss
is a very small part of Unix/Linux tool grep
made with Rust for
learning purpose while reading and studying the Rust Book