我可以使用它out, err := exec.Command("git", "log").Output()来获取命令的输出,该命令将在与可执行位置相同的路径中运行。
如何指定要在哪个文件夹中运行命令?
exec.Command()返回一个type值*exec.Cmd。Cmd是一个struct并具有一个Dir字段:
// Dir specifies the working directory of the command.
// If Dir is the empty string, Run runs the command in the
// calling process's current directory.
Dir string
因此,只需在调用之前进行设置Cmd.Output():
cmd:= exec.Command("git", "log")
cmd.Dir = "your/intended/working/directory"
out, err := cmd.Output()
另请注意,这特定于git命令;git允许您使用-C标志传递路径,因此您也可以像这样进行操作:
out, err := exec.Command("git", "-C", "your/intended/working/directory", "log").
Output()
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。