simple-grep/README.md
2026-04-29 21:00:12 +02:00

348 B

A simple grep-like tool written in Rust.

Installation

git clone https://github.com/mindfreq/simple-grep.git
cd simple-grep
cargo build --release

Usage

# Basic search
s-grep <query> <file>

# Case-insensitive
s-grep -i <query> <file>

Examples

s-grep "hello" src/main.rs
s-grep -i "WHO" poem.txt