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
6
7
8
//! `vipe` binary alias entry point (gated behind the `vipe-alias` Cargo feature).
//!
//! Shares the same body as [`rusty_vipe::run`]; argv[0] auto-detect inside
//! `run()` routes invocations as `vipe` into Strict mode per FR-019.

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