bash_plugin_rs 0.1.1

crate to write bash plugins
Documentation
1
2
3
4
5
6
7

#[test]
fn test_sh() {
    println!("Hello");
    assert!(std::process::Command::new("bash").arg("tests/test.sh").status().expect("Failed to run test.sh").success());
}