keen/io/process
Sourceprocess-result recordRepresents the output of running a process.
process-exit unionexited recordsignaled recordrun-process-and-inherit-io int32(exe string, args string[]) globalRun a process that inherits this process' standard input and output streams.
run-process process-result(exe string, args string[]) globalRun a process and wait for it to complete.
exe should be a file path and not just a name; this does not search the system path for exe.spawn-and-wait process-exit(_ string, _ string[]) globalLaunches a process and synchronously waits on the result. The child process shares stdout and stderr with the parent process.