使 STDOUT_FILENO 成为新的文件处理程序
make STDOUT_FILENO a new file handler
我对使用“> /home/hel/myfile”执行文件感到困惑。如果 fd 是“[=14=”的文件处理程序,这完全等同于 dup2(fd, STDOUT_FILENO) ]”?至于内核,它们的工作方式是否相同?
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>
int main(void)
{
int fd;
fd = open("/home/hel/myfile", O_RDWR); // open a file
if (fd < 0) {
printf("open error\n");
exit(-1);
}
dup2(fd, STDOUT_FILENO); /*Is this toally equivalent to shell command
* " > /home/hu /myfile "?
*/
close(fd);
return 0;
}
是的,它们是等价的。当您 运行 带有输出重定向的命令时,shell 在调用 execlp()
执行您的程序之前会执行与您的代码类似的操作。
我对使用“> /home/hel/myfile”执行文件感到困惑。如果 fd 是“[=14=”的文件处理程序,这完全等同于 dup2(fd, STDOUT_FILENO) ]”?至于内核,它们的工作方式是否相同?
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>
int main(void)
{
int fd;
fd = open("/home/hel/myfile", O_RDWR); // open a file
if (fd < 0) {
printf("open error\n");
exit(-1);
}
dup2(fd, STDOUT_FILENO); /*Is this toally equivalent to shell command
* " > /home/hu /myfile "?
*/
close(fd);
return 0;
}
是的,它们是等价的。当您 运行 带有输出重定向的命令时,shell 在调用 execlp()
执行您的程序之前会执行与您的代码类似的操作。