Adds flavor of interactive filtering to the traditional pipe concept of UNIX shell
__
____ ___ ______________ / /
/ __ / _ / ___/ ___/ __ / /
/ /_/ / __/ / / /__/ /_/ / /
/ .___/___/_/ ___/____/_/
/_/
percol adds flavor of interactive selection to the traditional pipe concept on UNIX.
What’s this
percol is an interactive grep tool in your terminal. percol
- receives input lines from
stdin
or a file, - lists up the input lines,
- waits for your input that filter/select the line(s),
- and finally outputs the selected line(s) to
stdout
.
Since percol just filters the input and output the result to stdout, it can be used in command-chains with |
in your shell (UNIX philosophy!).