Hey! Does anyone know how I can capture stdout and...
# scripting
t
Hey! Does anyone know how I can capture stdout and stderr from a script? I'm using the "vanilla" kotlin scripting API
i
Via the JVM's
System.setOut/Err
, there are no script-specific solutions.
t
So I'd have to use that inside the script?
n
more like set it before the script is evaluated or in the configuration..
👌 2