本文简要介绍rust语言中 std::process::Command.output
的用法。
用法
pub fn output(&mut self) -> Result<Output>
将命令作为子进程执行,等待它完成并收集其所有输出。
默认情况下,会捕获 stdout 和 stderr(并用于提供结果输出)。标准输入不是从父进程继承的,子进程从标准输入流中读取的任何尝试都将导致流立即关闭。
例子
use std::process::Command;
use std::io::{self, Write};
let output = Command::new("/bin/cat")
.arg("file.txt")
.output()
.expect("failed to execute process");
println!("status: {}", output.status);
io::stdout().write_all(&output.stdout).unwrap();
io::stderr().write_all(&output.stderr).unwrap();
assert!(output.status.success());
相关用法
- Rust Command.args用法及代码示例
- Rust Command.env用法及代码示例
- Rust Command.env_remove用法及代码示例
- Rust Command.get_args用法及代码示例
- Rust Command.stdout用法及代码示例
- Rust Command.stdin用法及代码示例
- Rust Command.current_dir用法及代码示例
- Rust Command.status用法及代码示例
- Rust Command.envs用法及代码示例
- Rust Command.get_program用法及代码示例
- Rust Command.arg用法及代码示例
- Rust Command.stderr用法及代码示例
- Rust Command.env_clear用法及代码示例
- Rust Command.get_envs用法及代码示例
- Rust Command.get_current_dir用法及代码示例
- Rust Command.new用法及代码示例
- Rust Command.spawn用法及代码示例
- Rust Command用法及代码示例
- Rust Components用法及代码示例
- Rust Component.as_os_str用法及代码示例
- Rust Component用法及代码示例
- Rust Components.as_path用法及代码示例
- Rust Condvar.notify_all用法及代码示例
- Rust Condvar.wait用法及代码示例
- Rust Cow.is_owned用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::process::Command.output。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。