conch icon indicating copy to clipboard operation
conch copied to clipboard

A flexible library for shelling out in Clojure

Results 10 conch issues
Sort by recently updated
recently updated
newest added

I tried the low level usage with cat, but it doesn't work like in the example. What could be the problem? `playsync.core> (def p (sh/proc "cat")) #'playsync.core/p playsync.core> (future (sh/stream-to-out...

I found the conch macros to have high cognitive overhead. For fear of side-effects, I went and glossed over `let-programs` first before trying it. It would be nice if conch...

Hi @Raynes :) I was wondering if I've been using the `conch` library properly with the API clients like `HTTPIE` or `CURL`. I really like this library and have used...

on some exe's under windows timeout works on others it does not

I'm new to Clojure and using conch to feed output from my program to [feedgnuplot](https://github.com/dkogan/feedgnuplot) to track its progress. First I make a 'plotter' using the low-level sh/proc: ```clojure (:require...

Hi, Would be super helpful to have some brief description of the options in the README. I didn't realise i could just use `{:background true}` to background the process instead...

Would [this](https://github.com/boot-clj/boot/blob/master/boot/pod/src/boot/util.clj#L305) be an acceptable solution to the issue raised at https://github.com/Raynes/conch/blob/master/src/me/raynes/conch/low_level.clj#L102 I think it's a better tradeoff than System/out, since output can show up in tooling repls such as...

Hi! I need to run a command from within clojure that does two things (one essential, one nice) that require the command to have inherited the process I/O. - The...