Error: "fork/exec . no such file or directory" in Go with fork/exec
執行下列Go 碼可能會遇到錯誤“fork/exec .沒有這樣的檔案或目錄」:
func loop1(gor_name string, ras_ip string) { // ... c := fmt.Sprintf("%s %s %s %s", "./goreplay --input-file ", gor_name, " --input-file-loop --output-http ", ras_ip) cmd := exec.Command(c) // ... }
出現這個錯誤因為函數 exec.Command 需要程式名稱作為第一個參數,後跟其參數。程式碼目前將整個命令指定為單一字串,從而導致錯誤。
要解決此問題,請修改程式碼以使用正確的函數簽署:
cmd := exec.Command("./goreplay", "--input-file", gor_name, "--input-file-loop", "--output-http", ras_ip)
在此更新的程式碼,程式名稱「goreplay」及其參數作為單獨的參數傳遞給exec.Command。
以上是為什麼我的 Go 程式碼在使用 `exec.Command` 時回傳「fork/exec . no such file or directory」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!