shell-util 0.0.0

A cross-platform library for executing shell commands.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(slice_internals)]

mod encoding;
mod error;
mod options;
mod shell;
mod stdout_reader;

pub use encoding::*;
pub use error::*;
pub use options::*;
pub use shell::*;
pub(crate) use stdout_reader::*;

pub type Result<T> = std::result::Result<T, Error>;