@roman.bataev is it possible to use joker with gnu parallel ?
what are you trying to do? Calling Joker from gnu parallel? I don't see why that would not work....
the other way around. calling gnu parallel from joker.os/exec
didn't have any success with joker.os/exec
@roman.bataev I noticed, thanks
is it possible to use joker.os/exec with gnu parallel ?
didnt have any success with that
what did you try to do and what problem did you run into?
there was a bug in joker.os/exec that is now fixed: https://github.com/candid82/joker/commit/f0e093341cf5c916ffb99e51bcc1227dc3e655a3
this now works:
> echo hi | ./joker -e '(pprint (joker.os/exec "cat" {:stdin :pipe}))'
{:success true,
:exit 0,
:out "hi\n",
:err ""}
@firstclassfunc has joined the channel