command-run 1.1.2

Library for running a command in a subprocess
Documentation
1
2
3
4
5
6
7
use std::process::exit;

fn main() {
    println!("test-stdout");
    eprintln!("test-stderr");
    exit(1);
}