import * as simpleShell from "https://deno.land/x/simple_shell@0.14.1/src/ds.ts";
Variables
v $ | Run a command and return stdout decoded (alias to $o) |
v $$ | Run a command with stdin,stdout,stderr set as 'inherit' This is useful for long-running/interactive commands |
v $$o | |
v $e | Run a command and return stderr decoded |
v $o | Run a command and return stdout decoded |
v $s | Run a command and return the status |
v $t | Run a command and throw an error if it exists with a non-zero code. |
Run a command with a specified shell |