小编典典

fork / exec。没有这样的文件或目录退出状态1

go

我在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

}

非常感谢您的任何建议。


阅读 272

收藏
2020-07-02

共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)
2020-07-02