import { exec } from "https://deno.land/x/exec@0.0.5/mod.ts"; const {output: cowsayOut} = await exec('which cowsay'); if (!cowsayOut) console.log(await exec('sudo apt-get install cowsay')); const {output} = await exec('cowsay "Hello, from Shell via Deno"');