我在上一个问题中询问了管道,让它完美运行。但是我对输出重定向有一些疑问,比如>>通常在shell中。互联网上似乎没有关于它的大量信息。这是我到目前为止所拥有的。是否有更好/更简单的方法来做到这一点,它是凌乱的,我甚至不能确定我理解它。部分内容是笔记中给出的伪代码,我有点填充它们,但即使我不是很确定。
void do_redirect(char** cmd, char** file) {
int fds[2];
int count;
int fd;
char i;
pid_t pid;
pipe(fds);
//File Descriptors/pipe and redirecting char variables (i)
//fd is used with the open command, basically stores the
//Child 1
if (fork() == 0) {
//Open the file with read/write commands, 0_CREAT creates the file if it does not exist
fd = open(file[0], O_RDWR | O_CREAT, 0777);
dup2(fds[0], 0);
//Close STDOUT
close(fds[1]);
//Read from STDOUT
while ((count = read(0, &i, 1)) > 0)
write(fd, &i, 1); // Write to file.
exit(0);
//Child 2
} else if ((pid = fork()) == 0) {
dup2(fds[1], 1);
//Close STDIN
close(fds[0]);
//Output contents to the given file.
execvp(cmd[0], cmd);
perror("execvp failed");
Parent
} else {
waitpid(pid, NULL, 0);
close(fds[0]);
close(fds[1]);
}
}
答案 0 :(得分:1)
如果您正在寻找O_APPEND
,则需要>>
。