0

我对使用“/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;
}
4

1 回答 1

2

是的,它们是等价的。execlp()当您运行带有输出重定向的命令时,shell 在调用执行您的程序之前会执行类似于您的代码的内容。

于 2015-12-24T05:36:13.483 回答