term-rs 0.1.2

rust terminal dev tools
Documentation
1
2
3
4
5
6
extern crate term_rs;
use term_rs::Terminal;

fn main() {
    Terminal::run(|command|{ format!("{}: command not found", command) } );
}