views:

111

answers:

1

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?

+4  A: 

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.

Roman Gonzalez
Ah, I knew about real world haskell, but I didn't know there was a chapter on systems programming, thanks!
Levi Campbell