我有一堆系统命令,它们有点类似于将新内容附加到文件中。我写了一个简单的脚本来执行系统命令,如果有像 'ls' 、 'date' 等单个词,它运行良好。但是如果命令大于这个,程序就会死掉。
以下是代码
package main
import (
"fmt"
"os/exec"
"sync"
)
func exe_cmd(cmd string, wg *sync.WaitGroup) {
fmt.Println(cmd)
c = cmd.Str
out, err := exec.Command(cmd).Output()
if err != nil {
fmt.Println("error occured")
fmt.Printf("%s", err)
}
fmt.Printf("%s", out)
wg.Done()
}
func main() {
wg := new(sync.WaitGroup)
wg.Add(3)
x := []string{"echo newline >> foo.o", "echo newline >> f1.o", "echo newline >> f2.o"}
go exe_cmd(x[0], wg)
go exe_cmd(x[1], wg)
go exe_cmd(x[2], wg)
wg.Wait()
}
以下是我看到的错误
exec: "echo newline >> foo.o": executable file not found in $PATHexec:
"echo newline >> f2.o": executable file not found in $PATHexec:
"echo newline >> f1.o": executable file not found in $PATH
我想,这可能是由于没有单独发送 cmds 和参数(http://golang.org/pkg/os/exec/#Command)。我想知道如何颠覆这一点,因为我不知道我的命令中有多少参数需要执行。
喵喔喔
相关分类