gpt4 book ai didi

c - 将 execlp 输出重定向到文件

转载 作者:行者123 更新时间:2023-12-04 06:05:11 25 4
gpt4 key购买 nike

如何将 execlp 输出重定向到文件?例如,我想将 execlp("ls", "ls", "-l", NULL) 的输出重定向到输出文件(比如 a.txt)。

最佳答案

你需要做这样的事情:

int fd = open("output_file", O_WRONLY|O_CREAT, 0666);
dup2(fd, 1);
close(fd);
execlp("ls", "ls", "-l", (char *)0);

关于c - 将 execlp 输出重定向到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6493674/

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