wrap args with quotes if necessary
// @internal String quoteWrap(String arg) { if (arg.contains(' ')) { return '"$arg"'; } return arg; }