在haskell中实现unix管道
我正在编写一个迷你 shell,虽然我已经计划好了大部分内容,但我不确定如何做的一件事是将一个程序的输出作为另一个程序的输入进行管道传输。有样本或其他东西可以为我指明正确的方向吗?
I'm writing a mini shell and although I've got most of it planned out, one thing I'm not sure how to do is implement piping the output of one program as the input of another. Is there a sample or something that can point me in the right direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RWH 书有一个关于如何在 Haskell 中模拟管道的完整示例,IMO 是这本书最好的示例之一,它可能很有启发性。
=> http://book.realworldhaskell.org/read/systems -programming-in-haskell.html#systems.piping
祝你好运。
The RWH Book has a complete example of how to emulate piping in Haskell, IMO is one of the best examples of the book and it could be quite enlightening.
=> http://book.realworldhaskell.org/read/systems-programming-in-haskell.html#systems.piping
Good Luck.