我正在尝试用另一个管道替换stdin,然后将原始stdin放回fd #0。
例如
dup2(p, 0); // p is a pre-existing fd of a pipe
exec(/* some commands */);
//what will be here in order to have the original stdin back?
scanf(...) //continue processing with original stdin.
一旦
原始文件被覆盖(关闭),您将无法恢复它。 您可以做的是在覆盖它之前保存它的副本(当然,这需要提前计划):
int old_stdin = dup(STDIN_FILENO);
dup2(p, STDIN_FILENO);
close(p); // Usually correct when you dup to a standard I/O file descriptor.
…code using stdin…
dup2(old_stdin, STDIN_FILENO);
close(old_stdin); // Probably correct
scanf(…);
但是,您的代码提到了exec(…some commands…);
— 如果这是 POSIX execve()
函数系列之一,则除非 exec*()
调用失败,否则您将无法到达 scanf()
(或第二个dup2()
)调用。