#scripting #shell #kit #arg #cmd #sh #os

已删除 scriptkit

适用于 Rust 的简单脚本工具包

1.0.1 2023年1月6日
1.0.0 2022年12月20日
0.1.9 2022年12月20日

#60 in #sh

每月下载量:31

MIT 许可证

4KB
78

ScriptKit

Rust 中用于 shell 脚本的简单工具包!

基本用法

use scriptkit::shell::{Cmd, Arg, shell_tools::null_sh};
#[allow(unused_imports)] 
use scriptkit::sys::{OS, os_eye::open};

fn print_host() {
    println!("Executed On: {:?}", open().name);
}

fn main() {
    // Construct your command!
    let cmd = Cmd::new("echo");
    
    // Construct your argument!
    let arg = Arg::new("Hello, World!");
    
    // Execute the command!
    null_sh(cmd, arg).expect("Failed to run command");
    
    print_host();
}

无运行时依赖