bare-script 0.1.1

The type-safe scripting authority for Rust. A framework for building robust shell commands and automation with 'Parse, don't validate' philosophy.
Documentation
1
2
3
4
5
6
7
8
9
10
//!
//! Synchronous command execution.
//!
//! Provides command building and execution using `std::process::Command`.

pub mod builder;
pub mod pipeline;

pub use builder::CommandBuilder;
pub use pipeline::Pipeline;