pipes icon indicating copy to clipboard operation
pipes copied to clipboard

A Clojure library that lets you chain processes and threads via pipes.

Results 2 pipes issues
Sort by recently updated
recently updated
newest added

David. Was Greacian your grandmother.? Or some relative? I have something of hers that i found at Goodwill here in Oakland that brings me great joy. RSVP GIULIA [email protected]

Here's what I'm seeing when I run the quickstart example ``` clojure (with-open [in (clojure.java.io/input-stream "README.md") out (clojure.java.io/output-stream "line_count.txt")] (->pipe-> in [(exec ["grep" "java"]) (exec ["wc" "-l"])] out)) ;=> #pipes.job/job-ctl/reify--21836[{:status...

bug