如何使用`std :: io :: Command`

时间:2019-04-13 05:45:30

标签: rust

我正在尝试在Rust中执行以下代码:

use std::io::Command;

fn main() {
    let the_output = Command::new("ruby").arg(["-e", "puts 'raja'", "x"]).output()
}

但是它抛出了这个错误:

error[E0432]: unresolved import `std::io::Command`
 --> src\main.rs:1:5
  |
1 | use std::io::Command;
  |     ^^^^^^^^^^^^^^^^ no `Command` in `io`

有人可以指导我如何将此use std::io::Command;导入到我的程序中吗?

1 个答案:

答案 0 :(得分:1)

没有std::io::Command。您可能在想std::process::Command