A simple tool to filter the input interactively in a POSIX pipeline.
Go to file
Sameer Rahmani 0e85561a72 Add the usage info to the readme 2022-11-23 22:45:19 +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 Add the usage info to the readme 2022-11-23 22:45:19 +00:00
filter.go Add a todo to user tcell/v2/views in the future 2022-11-23 22:39:46 +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 Add documentation to the source and and replace 'r' and 'n' with Emacs keybindings 2022-11-23 21:24:54 +00:00

README.md

filter

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:

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