func os/exec.Command

12 uses

	os/exec (current package)
		exec.go#L169: func Command(name string, arg ...string) *Cmd {
		exec.go#L193: 	cmd := Command(name, arg...)

	github.com/aws/aws-sdk-go/aws/credentials/processcreds
		provider.go#L189: 		command:    exec.Command(command),
		provider.go#L324: 	p.command = exec.Command(cmdArgs[0], cmdArgs[1:]...)

	github.com/go-git/go-git/v5/plumbing/transport/file
		client.go#L39: 	execCmd := exec.Command("git", "--exec-path")
		client.go#L98: 	return &command{cmd: exec.Command(cmd, ep.Path)}, nil

	github.com/mitchellh/go-homedir
		homedir.go#L105: 		cmd := exec.Command("sh", "-c", `dscl -q . -read /Users/"$(whoami)" NFSHomeDirectory | sed 's/^[^ ]*: //'`)
		homedir.go#L114: 		cmd := exec.Command("getent", "passwd", strconv.Itoa(os.Getuid()))
		homedir.go#L134: 	cmd := exec.Command("sh", "-c", "cd && pwd")

	google.golang.org/api/transport/cert
		default_cert.go#L100: 	data, err := exec.Command(command[0], command[1:]...).Output()

	google.golang.org/grpc/credentials/alts
		utils.go#L61: 			cmd := exec.Command(windowsCheckCommand, windowsCheckCommandArgs)

	internal/execabs
		execabs.go#L67: 	cmd := exec.Command(name, arg...)