@oazmi/kitchensink - v0.10.1
    Preparing search index...

    Interface ExecShellCommandConfig

    configuration options for the execShellCommand function.

    interface ExecShellCommandConfig {
        args: string[];
        cwd?: string | URL;
        env?: Record<string, string | undefined>;
        signal?: AbortSignal;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    args: string[]

    cli-arguments to pass to the process.

    [] (empty array)

    cwd?: string | URL

    set the working directory of the process.

    if not specified, the cwd of the parent process is inherited.

    undefined

    env?: Record<string, string | undefined>

    set the environment variables of the process.

    I don't know whether these get appended, or completely clear out the existing environment variables, so that the new process only gets a new slate of environment variables that are specified here.

    undefined (i.e. inherit environment variables from the current js-runtime)

    signal?: AbortSignal

    provide an optional abort signal to force close the process, by sending a "SIGTERM" os-signal to it.

    undefined