Add the usage info to the readme

This commit is contained in:
Sameer Rahmani 2022-11-23 22:42:28 +00:00
parent 45d5da9094
commit 0e85561a72
1 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,13 @@
# filter
A simple tool to filter the input interactively in a POSIX pipeline.
A simple tool to filter the input interactively in a POSIX pipeline.
## How to build?
Just run `go build .`
## Usage
Use the filter command in a pipeline like:
```bash
git commit -a --fixup $(g log --oneline|./filter|cut -d ' ' -f 1 |xargs)
```