Re: tlc Expect like library?

2018-02-13 Thread Andy Fingerhut
Google searches for the terms: java tcl expect turn up a few things that appear to be integrations of existing Tcl/Expect into the JVM via native interfaces like JNI. There might also be a "native Java" version available that way. The up side of wrapping an existing implementation is that it wou

Re: tlc Expect like library?

2018-02-13 Thread Stephen Feyrer
Hi Justin, That looks really cool. I'll take some time reading about it and see if I can do anything. Thank you. -- Kind regards, Stephen. On 13 February 2018 at 18:26, Justin Smith wrote: > I've long thought implementing something like TCL expect in Clojure would > be a fun project, as fa

Re: tlc Expect like library?

2018-02-13 Thread Justin Smith
I've long thought implementing something like TCL expect in Clojure would be a fun project, as far as I know it hasn't been tried (though the google results are drowned out by the Expectations testing library so who knows...). If I were doing this from scratch I'd start with the Process and Proces

tlc Expect like library?

2018-02-13 Thread Stephen Feyrer
Hi, I would like to ask, is there a Clojure version of the tlc expect library or an equivalent? Something to launch and control other applications. Specifically I want to control text based terminal application. Emulating the screen, moving the cursor around and firing character codes at it? T