Re: [ANN] Pipes 0.1.1 - chain processes, shell commands and threads via pipes

2015-11-13 Thread Dave Tenny
Just a bit of history from which you might derive some inspiration for your pipe metaphors in Clojure, the scheme shell. Main site: http://scsh.net/ Docs on various constructs, including process I/O operators: http://scsh.net/docu/html/man-Z-H-1.html#node_toc_start On Friday, November 13, 20

Re: [ANN] Pipes 0.1.1 - chain processes, shell commands and threads via pipes

2015-11-13 Thread Alan Thompson
Looks nice! Alan On Fri, Nov 13, 2015 at 5:56 AM, Marcin Bilski wrote: > Home: https://github.com/bilus/pipes > > If you ever used Un*x pipes > > ``` > $ ls | grep .clj > ``` > > then this library gives you a power to do this in Clojure and a lot more. > > You can use streams to chain any numbe

[ANN] Pipes 0.1.1 - chain processes, shell commands and threads via pipes

2015-11-13 Thread Marcin Bilski
Home: https://github.com/bilus/pipes If you ever used Un*x pipes ``` $ ls | grep .clj ``` then this library gives you a power to do this in Clojure and a lot more. You can use streams to chain any number of shell commands, processes and Clojure functions to process the streams on the fly. The