使用 dup2 进行管道传输
如何使用 dup2 执行以下命令?
ls -al | grep alpha | more
How do I use dup2 to perform the following command?
ls -al | grep alpha | more
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
前两个命令的小例子。您需要使用 pipeline() 函数创建一个管道,该函数将在 ls 和 grep 之间创建,并在 grep 和 more 之间创建其他管道。 dup2 的作用是将一个文件描述符复制到另一个文件描述符中。 Pipe 的工作原理是将 fd[0] 中的输入连接到 fd[1] 中的输出。您应该阅读 pipeline 和 dup2 的手册页。如果您还有其他疑问,我稍后可能会尝试简化该示例。
A Little example with the first two commands. You need to create a pipe with the pipe() function that will go between ls and grep and other pipe between grep and more. What dup2 does is copy a file descriptor into another. Pipe works by connecting the input in fd[0] to the output of fd[1]. You should read the man pages of pipe and dup2. I may try and simplify the example later if you have some other doubts.
您也可以使用
pipe(2,3p)
。创建管道,分叉,将管道的相应一端复制到子管道的 FD 0 或 FD 1 上,然后执行。You would use
pipe(2,3p)
as well. Create the pipe, fork, duplicate the appropriate end of the pipe onto FD 0 or FD 1 of the child, then exec.