A simple tool to filter the input interactively in a POSIX pipeline.
Go to file
Sameer Rahmani 2b1164e0fa Create the help scene 2022-11-25 18:02:02 +00:00
.gitignore Initialize the go module 2022-11-23 21:09:05 +00:00
LICENSE Initial commit 2022-11-23 21:06:24 +00:00
README.md Fix the readme typo 2022-11-24 12:23:43 +00:00
filter.go Create the help scene 2022-11-25 18:02:02 +00:00
go.mod Add tcell v2 as a dependency 2022-11-23 21:11:19 +00:00
go.sum Add tcell v2 as a dependency 2022-11-23 21:11:19 +00:00
utils.go Fix the multiselect highlight issue 2022-11-25 17:29:31 +00:00

README.md

filter

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:

git commit -a --fixup $(git log --oneline|filter|cut -d ' ' -f 1 |xargs)