keen/io/process

Source
command-line-args string[]() global
exit-process void(exit-code int32) global
process-result record
stdout string
stderr string
Represents the output of running a process.
process-exit union
exited record
exit-code int32
signaled record
signal int32
has-error bool(a process-result)
run-process-and-inherit-io int32(exe string, args string[]) global
Run a process that inherits this process' standard input and output streams.
run-process process-result(exe string, args string[]) global
Run 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.
run-process-options record
new run-process-options()
run-process process-result(exe string, args string[], options run-process-options) global
spawn-and-wait process-exit(_ string, _ string[]) global
Launches a process and synchronously waits on the result. The child process shares stdout and stderr with the parent process.
shell-exec string(_ string) global
Executes a shell command and returns its output.