1//! 2//! Synchronous command execution. 3//! 4//! Provides command building and execution using `std::process::Command`. 5 6pub mod builder; 7pub mod pipeline; 8 9pub use builder::CommandBuilder; 10pub use pipeline::Pipeline;