Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/proc/mod.ts>execute

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Go to Latest
function execute
import { execute } from "https://deno.land/x/proc@0.20.0/mod.ts";

Run a process.

Parameters

options: RunFnOptions

The command.

cmd: string

Options.

...args: string[]

Returns

Promise<void>

A child process instance.

Run a process.

Parameters

cmd: string

The command.

...args: string[]

Returns

Promise<void>

A child process instance.