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, 2015 at 9:13:56 AM UTC-5, 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 number of shell commands, processes and 
> Clojure functions to process the streams on the fly. The library handles 
> error exit codes, exceptions by shutting down the pipeline and closing 
> intermediate streams. It also lets you cancel the entire pipeline with a 
> single function call and much more.
>
> I just pushed out the first version of the library. I extracted it from 
> production code so it's safe to use despite its low version number.
>
> The documentation is rudimentary and work in progress, I'm going to add 
> more examples.
>
> I'm looking forward to your feedback and, most of all, critique. Thank you.
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 number of shell commands, processes and
> Clojure functions to process the streams on the fly. The library handles
> error exit codes, exceptions by shutting down the pipeline and closing
> intermediate streams. It also lets you cancel the entire pipeline with a
> single function call and much more.
>
> I just pushed out the first version of the library. I extracted it from
> production code so it's safe to use despite its low version number.
>
> The documentation is rudimentary and work in progress, I'm going to add
> more examples.
>
> I'm looking forward to your feedback and, most of all, critique. Thank you.
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 library handles 
error exit codes, exceptions by shutting down the pipeline and closing 
intermediate streams. It also lets you cancel the entire pipeline with a 
single function call and much more.

I just pushed out the first version of the library. I extracted it from 
production code so it's safe to use despite its low version number.

The documentation is rudimentary and work in progress, I'm going to add 
more examples.

I'm looking forward to your feedback and, most of all, critique. Thank you.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.