package mainimport ( "fmt" "log" "os/exec")func main() { out, err := exec.Command("date").Output() if err != nil { log.Fatal(err) } fmt.Printf("The date is %s\n", out)}这是用于执行系统命令的文档中的代码示例。http://golang.org/pkg/os/exec/#example_Cmd_Output即使在文档站点上,示例执行框也不会运行并出现相同的错误: 2009/11/10 23:00:00 exec: "date" : 在 $PATH 中找不到可执行文件在 Windows 上,我得到: exec: "date": executable file not found in %PATH%如何让命令起作用?我是否需要设置路径或写出命令的完整路径?
- 2 回答
- 0 关注
- 463 浏览
添加回答
举报
0/150
提交
取消