如何在使用 dup2(..) 和使用 execvp(...) 后重定向回标准输出
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 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.
您可以在使用
dup2
之前保留stdout
的副本:You can keep a copy of
stdout
before usingdup2
: