gpt4 book ai didi

rust - 带有使用rust 的exec “tail -f xxx”

转载 作者:行者123 更新时间:2023-12-03 11:42:52 25 4
gpt4 key购买 nike

我想用 rust 来执行tail -f a,但是当我运行以下代码时没有输出:

fn main() {
// "a" is a text file and some characters have been written to it
let child = Command::new("tail").args(&["-f", "a"])
.stdin(Stdio::piped())
.stdout(Stdio::piped())
.spawn().expect("failed tail command");
let mut s = String::new();
child.stdout.expect("error of stdout")
.read_to_string(&mut s).expect("error of read all");
println!("{}", s);
}
当我在 a文件中添加新行时,我只得到 tail: a: file truncated

最佳答案

read_to_string读取直到EOF为止,因为tail连续输出且永不结束,所以它将永远不会被命中。更改您的程序以一次读取并打印一行。

关于rust - 带有使用rust 的exec “tail -f xxx”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63397712/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com