rusty-pee 0.2.0

Fan stdin out to N concurrent shell-spawned children — a Rust port of moreutils `pee` with strict-compat mode, exit-code aggregation (Default max / Strict bitwise OR), backpressure-paced byte-perfect delivery, and a typed library API.
Documentation
1
2
3
4
5
6
7
8
//! `pee` binary alias entry point (gated behind the `pee-alias` Cargo feature).
//!
//! Shares the same body as [`rusty_pee::run`]; argv[0] auto-detect inside
//! `run()` routes invocations as `pee` into Strict mode per FR-012.

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