No description
| src | Integration testing | |
| .gitignore | first commit | |
| Cargo.lock | Add a search function | |
| Cargo.toml | Add a search function | |
| poem.txt | Add a search function | |
| README..md | Create README | |
m-grep 🔍
A simple grep-like tool written in Rust.
Installation
git https://codeberg.org/bux/m-grep.git
cd m-grep
cargo build --release
Usage
# Basic search
m-grep <query> <file>
# Case-insensitive
m-grep -i <query> <file>
Examples
m-grep "hello" src/main.rs
m-grep -i "WHO" poem.txt