我在使用 Go 时遇到问题。这是我的代码:
package main
import (
"fmt"
"os/exec"
)
func main() {
output, err := exec.Command("pwd").Output()
fmt.Println(string(output), err)
output, err = exec.Command("ls", "-l").Output()
fmt.Println(string(output), err)
}
当我运行它时,我收到以下错误。
err exec: "pwd": 在 $PATH 中找不到可执行文件;
err exec: "ls": 在 $PATH 中找不到可执行文件
我正在使用Ubuntu 14.04.
相关分类