From eb8c5fbe59a57873df1a89438bbceaff2110c477 Mon Sep 17 00:00:00 2001 From: mindfreq <144544047+mindfreq@users.noreply.github.com> Date: Wed, 29 Apr 2026 21:00:12 +0200 Subject: [PATCH] Update README --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 88d192e..460f759 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ ## Installation ```bash -git https://codeberg.org/bux/m-grep.git -cd m-grep +git clone https://github.com/mindfreq/simple-grep.git +cd simple-grep cargo build --release ``` @@ -12,15 +12,15 @@ cargo build --release ```bash # Basic search -m-grep +s-grep # Case-insensitive -m-grep -i +s-grep -i ``` ### Examples ```bash -m-grep "hello" src/main.rs -m-grep -i "WHO" poem.txt +s-grep "hello" src/main.rs +s-grep -i "WHO" poem.txt ```