From b2ded6e74833b9aa2d146a7b6e30d910a3e1b303 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 2 Jun 2026 21:57:59 +0200 Subject: [PATCH 1/2] Add installation section to README Added installation instructions for uu_grep. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 524e6d7..2b0b15e 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,12 @@ A Rust implementation of [GNU Grep](https://www.gnu.org/software/grep/). This project is an initial release and may contain bugs. +## Install + +```shell +cargo install uu_grep +`` + ## Building Download Rust at: https://rustup.rs/ From 26630dc50620dc4dd8e4285e7ec4b33b71309f5b Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 3 Jun 2026 17:48:14 +0200 Subject: [PATCH 2/2] Correct code block syntax in README Fix formatting of code block in installation instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b0b15e..9dff846 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ This project is an initial release and may contain bugs. ```shell cargo install uu_grep -`` +``` ## Building