run-detached ( desc -- process )
Operating system processes ยป Launching processes

Prev:try-process ( desc -- )
Next:wait-for-process ( process -- status )


Vocabulary
io.launcher

Inputs
desca launch descriptor


Outputs
processa process


Generic word contract
Launches a process without waiting for it to complete. The object can either be a string, a sequence of strings or a process. See Launch descriptors for details.

Notes
This word is functionally identical to passing a process to run-process having the detached slot set.

The output value can be passed to wait-for-process to get an exit code.

See also
run-process, run-processes, try-process

Definition