Vocabularyio.
launcherInputsOutputsWord descriptionLaunches a process. The object can either be a string, a sequence of strings or a
process. See
Launch descriptors for details.
ExamplesUSING: io.launcher prettyprint ;
"pwd" run-process .
T{ process
{ command "pwd" }
{ environment H{ } }
{ environment-mode +append-environment+ }
{ group +same-group+ }
{ status 0 }
}
NotesThe output value will either have the exit code set or can be passed to
wait-for-process to get an exit code in the case of a
detached process.
See alsorun-processes,
try-process,
run-detachedDefinition