From e810ac65a7d006011ac9b86d270756f78ee371f6 Mon Sep 17 00:00:00 2001 From: mindfreq <144544047+mindfreq@users.noreply.github.com> Date: Thu, 23 Apr 2026 18:10:11 +0200 Subject: [PATCH] Create README --- README..md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 README..md diff --git a/README..md b/README..md new file mode 100644 index 0000000..4b514f4 --- /dev/null +++ b/README..md @@ -0,0 +1,28 @@ +# m-grep 🔍 + +A simple grep-like tool written in Rust. + +## Installation + +```bash +git https://codeberg.org/bux/m-grep.git +cd m-grep +cargo build --release +``` + +## Usage + +```bash +# Basic search +m-grep + +# Case-insensitive +m-grep -i +``` + +### Examples + +```bash +m-grep "hello" src/main.rs +m-grep -i "WHO" poem.txt +``` \ No newline at end of file