我正在尝试进行我的第一个管道工作:基本上我已经编写了一个程序,该程序应该在屏幕上显示输入的内容。问题是只打印了几个字符(通常只打印第一个),我真的很难理解为什么. 我的代码是:
if ( pid > 0 ) //If I'm the parent
{
close(fd[0]);
//as long as something is typed in and that something isn't
// the word "stop"
while (((n = read(STDIN_FILENO, buffer, BUFFERSIZE)) > 0) &&
(strncmp(buffer, "stop", 4) != 0))
{
//shove all the buffer content into the pipe
write(fd[1], buffer, n);
}
}
else //If I am the child
{
close(fd[1]);
//as long as there's something to read
while (pipe_read = read(fd[0], buf, BUFFERSIZE) > 0)
{
//display on the screen!
write(STDOUT_FILENO, buf, pipe_read);
}
}