func os/exec.Command

16 uses

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

	go.pact.im/x/goupdate
		download.go#L30: 	c := exec.Command("go", append([]string{"mod", "download", "-json"}, upgrades...)...)
		modules.go#L17: 	c := exec.Command("go", "mod", "edit", "-go", goVersion)
		modules.go#L26: 	c := exec.Command("go", "mod", "edit", "-json")
		tests.go#L57: 	c := exec.Command("go", args...)
		upgrade.go#L117: 	c := exec.Command("go", args...)
		workspaces.go#L50: 	c := exec.Command("go", "work", "edit", "-json")
		workspaces.go#L79: 		c := exec.Command("go", "mod", "tidy")
		workspaces.go#L97: 	c := exec.Command("go", "work", "sync")
		workspaces.go#L106: 	c := exec.Command("go", append([]string{"env", "-json", "--"}, vars...)...)

	go.pact.im/x/zapjournal/tests
		journalctl.go#L31: 	c := exec.Command("journalctl",

	golang.org/x/sys/execabs
		execabs.go#L99: 	cmd := exec.Command(name, arg...)

	golang.org/x/tools/go/gcexportdata
		gcexportdata.go#L48: 	cmd := exec.Command("go", "list", "-json", "-export", "--", importPath)

	golang.org/x/tools/internal/gcimporter
		gcimporter.go#L55: 				cmd := exec.Command("go", "list", "-export", "-f", "{{.Export}}", pkgDir)

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