No description
Find a file
2026-04-29 20:56:54 +02:00
src Integration testing 2026-04-23 18:03:45 +02:00
.gitignore first commit 2026-04-22 11:22:24 +02:00
Cargo.lock Add a search function 2026-04-22 19:34:27 +02:00
Cargo.toml Add a search function 2026-04-22 19:34:27 +02:00
poem.txt Add a search function 2026-04-22 19:34:27 +02:00
README.md update README.md 2026-04-29 20:56:54 +02:00

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