rusht 1.1.0

Shell commands written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use self::chain::chained;
pub use self::handle_mon::handle_mon;
pub use self::handle_piped::handle_piped;
pub use self::mon::mon;
pub use self::mon::mon_task;
pub use self::mon_args::MonArgs;
pub use self::piped::piped;
pub use self::piped_args::PipedArgs;
pub use self::sound::sound_notification;

mod chain;
mod handle_mon;
mod handle_piped;
mod mon;
mod mon_args;
mod piped;
mod piped_args;
mod sound;