Skip to main content
Module

x/simple_shell/mod.ts>$$

Deno simple shell
Latest
variable $$
import { $$ } from "https://deno.land/x/simple_shell@0.14.1/mod.ts";

Run a command with stdin,stdout,stderr set as 'inherit' This is useful for long-running/interactive commands

$$ have a throws property, by default it is set to true. If throws is set to true this function will throw an error if the command exists with a non-zero code

type

(cmd: TemplateStringsArray | string, ...args: Array<string | number>) => unknown