```
command := exec.Command("git", "clone", "gitlab@git.24poker.com.cn:shilin/alliance_income.git") //初始化Cmd
command.Dir = "/opt/"
output, err := command.Output() //运行脚本
if err != nil {
fmt.Println(err)
}
fmt.Println("ProcessState PID:", command.ProcessState.Pid())
if command.ProcessState.Sys().(syscall.WaitStatus).ExitStatus() == 0 {
fmt.Println(string(output))
}
```
有疑问加站长微信联系(非本文作者)