//go:build !windows // +build !windows package subprocess import ( "os/exec" ) // ExecCommand is a small platform specific wrapper around os/exec.Command func ExecCommand(name string, arg ...string) *Cmd { cmd := exec.Command(name, arg...) cmd.Path, _ = LookPath(name) cmd.Env = fetchEnvironment() return newCmd(cmd) }