The interface for handling a child process returned fromDeno.Command.spawn
.
Create a child process.
Represents an instance of a sub process that is returned fromDeno.run
which can be used to manage the sub-process.
Send a signal to process under given pid
. The value and meaning of thesignal
to the process is operating system and process dependant.Signal
provides the most common signals. Default signalis "SIGTERM"
.
Spawns new subprocess. RunOptions must contain at a minimum the opt.cmd
,an array of program arguments, the first of which is the binary.
Options which can be set when calling Deno.Command
.
The interface returned from calling Deno.Command.output
orDeno.Command.outputSync
which represents the result of spawning thechild process.
These are unstable options which can be used with Deno.run
.
Options which can be used with Deno.run
.
The status resolved from the .status()
method of aDeno.Process
instance.