From b39584554caae90564a8cc7ebe812ed6dbb3d69e Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Thu, 24 Nov 2022 12:23:43 +0000 Subject: [PATCH] Fix the readme typo --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a51b78b..391ad8b 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,12 @@ A simple tool to filter the input interactively in a POSIX pipeline. ## How to build? Just run `go build .` +## How to install +Just copy the `filter` program somewhere in your `PATH` + ## Usage Use the filter command in a pipeline like: ```bash -git commit -a --fixup $(g log --oneline|./filter|cut -d ' ' -f 1 |xargs) +git commit -a --fixup $(git log --oneline|filter|cut -d ' ' -f 1 |xargs) ```