我对使用“/home/hel/myfile”执行文件感到困惑。如果 fd 是“/home/hel/myfile”的文件处理程序,这是否完全等同于 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;
}