Skip to main content
Module

x/run_simple/mod.ts>RunOptions

Simple run function to execute shell commands in Deno.
Latest
interface RunOptions
implements Omit<Deno.CommandOptions,
| "args"
| "stdin"
| "stdout"
| "stderr"
>
import { type RunOptions } from "https://deno.land/x/run_simple@2.3.0/mod.ts";

Extra options, to modify how the command runs.

Properties

optional
stdin: string | Uint8Array

If specified, will be supplied as STDIN to the command.

optional
verbose: boolean

Print extra details to STDERR; default to whether env variable "VERBOSE" has a truthy value, and --allow-env is enabled.