Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

shell

import { shell } from "https://garn.io/ts/v0.0.20/mod.ts";

Creates a new shell script Executable, run in the emptyEnvironment.

function shell(script: string): Executable;
function shell(s: TemplateStringsArray, ...args: Array<NixStrLitInterpolatable>): Executable;
function shell(s: TemplateStringsArray | string, ...args: Array<NixStrLitInterpolatable>);
§
shell(script: string): Executable
[src]

Creates a new shell script Executable, run in the emptyEnvironment.

§Parameters

§
script: string
[src]
§
shell(s: TemplateStringsArray, ...args: Array<NixStrLitInterpolatable>): Executable
[src]

§Parameters

§
s: TemplateStringsArray
[src]
§
...args: Array<NixStrLitInterpolatable> optional
[src]
§
shell(s: TemplateStringsArray | string, ...args: Array<NixStrLitInterpolatable>)
[src]

§Parameters

§
s: TemplateStringsArray | string
[src]
§
...args: Array<NixStrLitInterpolatable> optional
[src]