Nice! thanks for the examples. Great help
I still have one problem: i have an ExternalEvaluate that does not return/keeps running. i want to ssh into a server, parse a logfile there and get de resulting values into mma:
data = Flatten@ ImportString@
Block[{Print},
ExternalEvaluate["Shell" -> "StandardOutput",
"ssh user@someserver some-commands-that-outputs-a-long-list-of-numbers"]];
this keep "running" forever. (running the same ssh outside mma does complete nicely)
even this does keep running forever:
ExternalEvaluate["Shell", "ssh user@someserver some-commands-that-outputs-a-list-of-numbers tmpfile"];
the tmpfile is created (with the data)
anyone any idea?
thanks
Frank