Update README

This commit is contained in:
mindfreq 2026-04-29 21:00:12 +02:00
parent 0563a899dd
commit eb8c5fbe59

View file

@ -3,8 +3,8 @@
## Installation ## Installation
```bash ```bash
git https://codeberg.org/bux/m-grep.git git clone https://github.com/mindfreq/simple-grep.git
cd m-grep cd simple-grep
cargo build --release cargo build --release
``` ```
@ -12,15 +12,15 @@ cargo build --release
```bash ```bash
# Basic search # Basic search
m-grep <query> <file> s-grep <query> <file>
# Case-insensitive # Case-insensitive
m-grep -i <query> <file> s-grep -i <query> <file>
``` ```
### Examples ### Examples
```bash ```bash
m-grep "hello" src/main.rs s-grep "hello" src/main.rs
m-grep -i "WHO" poem.txt s-grep -i "WHO" poem.txt
``` ```