How can I do the equivalent of `$ FOO='BAR' bash -c 'echo $FOO'` ? ``` cmd := execute.ExecTask{ Command: "echo", Args: []string{"$FOO"}, StreamStdio: false, } ```