import { CommandBuilder } from "https://deno.land/x/dax@0.28.0/src/command.ts";
Sets stdout as quiet, spawns the command, and gets stdout as a string without the last newline.
Shorthand for:
const data = (await $`command`.quiet("stdout")).stdout.replace(/\r?\n$/, "");