import { $ } from 'zx';
await $({ verbose: true })`echo hello`; // prints command and output of command
await $`echo hello`.verbose(); // prints only the output
What's the mental model to understand why the two lines don't output the same thing? I expected them to have the same output. Thank you!