import { CommandBuilder } from "https://dotland.deno.dev/x/dax@0.39.2/src/command.ts";
Ensures stdout and stderr are piped if they have the default behaviour or are inherited.
// ensure both stdout and stderr is not logged to the console
await $`echo 1`.quiet();
// ensure stdout is not logged to the console
await $`echo 1`.quiet("stdout");
// ensure stderr is not logged to the console
await $`echo 1`.quiet("stderr");