pillar is a cli tool which will pad input into columns
- Rust 100%
| .github/workflows | add cargo dist setup | |
| src | clean clippy warnings | |
| .gitignore | echo stdin to stdout and don't break on broken pipe | |
| Cargo.lock | chore: Release pillar version 0.1.2 | |
| Cargo.toml | chore: Release pillar version 0.1.2 | |
| LICENSE-MIT | add license | |
| README.md | make ready for first publish | |
| tasks.md |
make a binary for cargo install pillar
|
|
pillar - a new column(1) for a modern terminal
This tool is a small replacement for column(1) which adds support for tty ansi codes It will not make column gaps too wide if it encounters ansi codes for color etc.
pillar is currently not a full one-to-one replacement for column(1) and it doesn't
aim to be.
Install
cargo install pillar
Usage
pillar reads from stdin and outputs to stdout.
$ printf "a{b{c\n1{{3\n" | pillar
a b c
1 3
Currently there's no support for specifying the column delimiter or any other column(1) flags.