登录 注册
当前位置:主页 > 资源下载 > 40 > 在Rust中执行Shell脚本

在Rust中执行Shell脚本

  • 更新:2024-09-23 13:44:02
  • 大小:837KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

run_script 在运行shell脚本。 执照 概述 该库使您可以根据外壳脚本的内容来调用它们。 尽管std :: process :: Command非常适合执行独立命令,但您需要更多手动代码来获取脚本文本并执行它。 为此,创建了该库。 用法 只需包括该库,并使用脚本文本和运行选项调用运行/生成功能: use run_script :: ScriptOptions; fn main () { let options = ScriptOptions :: new (); let args = vec! []; // run the script and get the script execution output let (code, output, error) = run_script :: run ( r#"