登录
首页 >  Golang >  Go问答

如何在特定文件夹中运行 shell 命令

来源:Golang技术栈

时间:2023-04-04 13:43:09 229浏览 收藏

本篇文章向大家介绍《如何在特定文件夹中运行 shell 命令》,主要包括golang,具有一定的参考价值,需要的朋友可以参考一下。

问题内容

我可以使用它out, err := exec.Command("git", "log").Output()来获取将在与可执行位置相同的路径中运行的命令的输出。

如何指定要在哪个文件夹中运行命令?

正确答案

exec.Command()返回一个类型的值*exec.CmdCmd是一个结构并且有一个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()

今天带大家了解了golang的相关知识,希望对你有所帮助;关于Golang的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>