Fix the readme typo

This commit is contained in:
Sameer Rahmani 2022-11-24 12:23:43 +00:00
parent 0e85561a72
commit b39584554c
1 changed files with 4 additions and 1 deletions

View File

@ -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)
```