我遇到了os/exec图书馆的问题。我想运行一个 shell 并向它传递多个命令来运行,但是当我这样做时它失败了。这是我的测试代码:
package main
import (
"fmt"
"os/exec"
)
func main() {
fmt.Printf("-- Test 1 --\n`")
command1 := fmt.Sprintf("\"%s\"", "pwd") // this one succeeds
fmt.Printf("Running: %s\n", command1)
cmd1 := exec.Command("/bin/sh", "-c", command1)
output1,err1 := cmd1.CombinedOutput()
if err1 != nil {
fmt.Printf("error: %v\n", err1)
return
}
fmt.Printf(string(output1))
fmt.Printf("-- Test 2 --\n")
command2 := fmt.Sprintf("\"%s\"", "pwd && pwd") // this one fails
fmt.Printf("Running: %s\n", command2)
cmd2 := exec.Command("/bin/sh", "-c", command2)
output2,err2 := cmd2.CombinedOutput()
if err2 != nil {
fmt.Printf("error: %v\n", err2)
return
}
fmt.Printf(string(output2))
}
运行此程序时,我在第二个示例中收到错误 127。似乎它正在寻找文字“pwd && pwd”命令,而不是将其作为脚本进行评估。
如果我从命令行做同样的事情,它工作得很好。
$ /bin/sh -c "pwd && pwd"
我在 OS X 10.10.2 上使用 Go 1.4。
人到中年有点甜
相关分类