//! Test helper: echo stdin to stdout, byte-for-byte.
//!//! Not part of procpilot's public API. Used by internal tests.
usestd::io::{self, Read, Write};fnmain(){letmut buf =Vec::new();ifio::stdin().read_to_end(&mut buf).is_ok(){let_=io::stdout().write_all(&buf);}}