Rust执行CMD 本文最后更新于 2024-08-27T14:59:49+00:00 Rust执行Shell使用Cargo创建一个Rust项目。 12345use std::process::Command; fn main() { let _ = Command::new("cmd.exe").arg("/c").arg("pause").status();} 可以将 .arg(“pause”) 中的内容替换为其他命令。 Rust #Rust Rust执行CMD https://blog.qingyi-studio.top/2023/09/10/Rust执行Shell/ 作者 Grey-Wind 发布于 2023年9月10日 更新于 2024年8月27日 许可协议 C#执行Shell 上一篇 C++执行Shell 下一篇 Please enable JavaScript to view the comments