我当前的程序:
#include <stdio.h>
#include <unistd.h>
#include <sys/wait.h>
#ifndef STD_IN
#define STD_IN 0
#endif
#ifndef STD_OUT
#define STD_OUT 1
#endif
int main(int argc, char *argv[]) {
int mypipe[2];
int pid;
if (pipe(mypipe)) return -1;
if ((pid = fork()) == -1) return -1;
else if (pid == 0) {
//child puts stuff in pipe
close(mypipe[0]);
dup2(mypipe[1], STD_OUT);
execlp("ls", "ls", "-l", NULL);
close(mypipe[1]);
} else {
//parent reads and prints from pipe
char buf[1024];
int bytes_read;
close(mypipe[1]);
while (bytes_read = read(mypipe[0], buf, 1024) > 0) {
write(STD_OUT, buf, bytes_read); //write from buf to STD_OUT
}
wait(NULL);
close(mypipe[0]);
}
return 0;
}
我希望父(else case)从管道中读取并将内容打印到控制台。我不知道这会失败在哪里,我需要一些关于我做错了什么的提示。提前谢谢!
最佳答案
你需要在作业周围加上括号:
while (bytes_read = read(mypipe[0], buf, 1024) > 0) {
正确的说法是:
while ((bytes_read = read(mypipe[0], buf, 1024)) > 0) {
赋值
=
的优先级低于>
,因此原始表达式的计算结果为:while (bytes_read = (read(mypipe[0], buf, 1024) > 0)) {
在每次成功读取后将
1
分配给bytes_read
。