我正在运行下面的代码,但无法重定向到文件。该文件已制作,但没有任何内容放入其中。如果我删除最后一条dup2(saveout,1)
语句,我可以创建并写入文件,但我无法返回终端,这很重要。一旦我把dup2(saveout,1)
后面的代码放入我的代码中,重定向就会停止工作,但我可以回到终端。我不明白为什么会这样。我想重定向并返回终端。
主文件
#include <cstdlib>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string>
#include <iostream>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
using namespace std;
void printmessage() {
printf("this is the message\n");
}
int main(int argc, char** argv) {
int saveout;
int fd;
saveout = dup(1);
for (int i = 0; i < 10; i++) {
fd = creat("/home/carl/example.txt",O_CREAT|O_APPEND);
dup2(fd, 1);
close(fd);
printf("Testing the message");
printmessage();
dup2(saveout,1);
close(saveout);
}
return 0;
}