filter/README.md

14 lines
258 B
Markdown
Raw Normal View History

2022-11-23 21:06:24 +00:00
# filter
2022-11-23 22:42:28 +00:00
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)
```