simple-grep/README.md
mindfreq 0563a899dd Update README
Removed header and adjusted description formatting.
2026-04-29 20:57:37 +02:00

329 B

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