如何在使用 dup2(..) 和使用 execvp(...) 后重定向回标准输出

发布于 2024-12-08 01:15:31 字数 147 浏览 1 评论 0原文

我正在使用 execvp() 运行多个命令。在我的 execs() 之一之前使用 dup2() 后,它会按预期重定向到 dup2() 中的文件。然而,问题是 dup2 之后发出的任何 execvp() 都会不断重定向回文件。我的问题是:如何使用 dup2 将输出重定向回标准输出?

I am running multiple commands using execvp(). After using dup2() before one of my execs() it redirects to the file in dup2() as expected. However, the problem is that any execvp() out after dup2 keeps getting redirected back to the file. My question is: How can i redirect the out back to the stdout with dup2?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝色星空 2024-12-15 01:15:31

您可以使用 dup() 和 dup2() 将 stdout 保存回来。

我建议您在 fork() (在子进程内)之后而不是之前执行 dup2() 重定向。

You can save stdout with dup() and dup2() it back.

I suggest rather that you do the dup2() to redirect after the fork() (inside the child process) rather than before it.

指尖微凉心微凉 2024-12-15 01:15:31

您可以在使用 dup2 之前保留 stdout 的副本:

int stdoutCopy = dup(1);                // Clone stdout to a new descriptor
if(dup2(file, 1) < 0) return 1;         // Change stdout to file
close(file);                            // stdout is still valid

// Do something...
 
if(dup2(stdoutCopy,1) < 0) return 1;    // Change stdout back from the clone
close(stdoutCopy);                      // Close the clone

// Do something...

You can keep a copy of stdout before using dup2:

int stdoutCopy = dup(1);                // Clone stdout to a new descriptor
if(dup2(file, 1) < 0) return 1;         // Change stdout to file
close(file);                            // stdout is still valid

// Do something...
 
if(dup2(stdoutCopy,1) < 0) return 1;    // Change stdout back from the clone
close(stdoutCopy);                      // Close the clone

// Do something...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文