rusty-vipe 0.1.0

Pop $EDITOR mid-pipe, edit the buffered bytes interactively, resume the pipeline with the edited output — a Rust port of moreutils `vipe` with strict-compat mode, cross-platform TTY reattachment (/dev/tty or CONIN$/CONOUT$), and a typed library API.
Documentation
1
2
3
4
5
//! `rusty-vipe` binary entry point. Thin wrapper around [`rusty_vipe::run`].

fn main() -> std::process::ExitCode {
    rusty_vipe::run()
}