fork / exec 没有这样的文件或目录退出状态1
exec.Command的函数签名为:
func Command(name string, args ...string) *Cmd
name
程序的名称在哪里args
,参数在哪里。试试这个:
cmd := exec.Command("./goreplay", "--input-file", gor_name, "--input-file-loop", "--output-http", ras_ip)
解决方法
我在Mac(darwin / amd64)上使用Go 1.10.2,并且遇到此错误。就是说没有这样的文件或目录。
这是我的代码,
func loop1(gor_name string,ras_ip string) {
var a string
var c string
a = search_path()
fmt.Printf("当前路径为",a)
fmt.Println(os.Chdir(a))
c = fmt.Sprintf("%s %s %s %s","./goreplay --input-file ",gor_name," --input-file-loop --output-http ",ras_ip)
fmt.Printf("c: ",c)
cmd := exec.Command(c)
err := cmd.Run()
if err != nil {
log.Fatal(err)
}
channel <- 1
}
非常感谢您的任何建议。
你可能想看: