从命令行将输出重定向到C中的文本文件

时间:2013-11-05 01:23:09

标签: c shell unix command

我在c中实现了一个shell,并且我很难将命令的输出重定向到文件。 当我将输出发送到文件时,它似乎工作,但文件没有打开,当我运行ls -l时,它显示以下内容:

---------x   1 warp  staff   441 Nov  4 20:15 output.txt

这是我的代码的一部分

pid = fork();
if(pid == 0) 
{ /* child process */

    if(redirFlag)
    {
        int fdRedir = open(redirectName, O_WRONLY | O_CREAT );
        if( fdRedir < 0){
            perror("Can't Open");
            exit(1);
        }

        if(dup2(fdRedir, STDOUT_FILENO) == -1){
            perror("dup2 failed");
            exit(1);
        }


    } 
    execvp(supplement[0], supplement);
    /* return only when exec fails */
    perror("exec failed");
    exit(-1);

1 个答案:

答案 0 :(得分:2)

open的原型是:

#include <fcntl.h>  
int open(const char *path, int oflag, ...);

创建文件时,您应该提供文件模式。

int open(const char *path, int oflags, mode_t mode);

在您的代码中,文件以标志O_CREAT打开,但未给出文件模式。因此,您无权对其进行操作。在创建新文件时尝试指示文件权限:

int fdRedir = open(redirectName, O_WRONLY | O_CREAT, 0644);