перенаправление стандартного вывода в c, затем сброс стандартного вывода

Я пытаюсь использовать перенаправления в C для перенаправления ввода в один файл, а затем вернуть стандартный вывод для вывода на экран. Может ли кто-нибудь сказать мне, что не так с этим кодом?

#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>

int main(int argc, char** argv) {
    //create file "test" if it doesn't exist and open for writing setting permissions to 777
    int file = open("test", O_CREAT | O_WRONLY, 0777);
    //create another file handle for output
    int current_out = dup(1);

    printf("this will be printed to the screen\n");

    if(dup2(file, 1) < 0) {
        fprintf(stderr, "couldn't redirect output\n");
        return 1;
    }

    printf("this will be printed to the file\n");

    if(dup2(current_out, file) < 0) {
        fprintf(stderr, "couldn't reset output\n");
        return 1;
    }

    printf("and this will be printed to the screen again\n");

    return 0;
}
6
задан David 24 July 2011 в 07:50
поделиться