我想使用 Go 获取 shell 脚本。理想情况下,以下代码
cmd := exec.Command("/bin/bash", "source", file.Name())
但是,我知道“源”是一个 bash 内置函数,而不是一个可执行文件。
但是,我找到了一些在 Python 中模仿这种行为的方法:
http://pythonwise.blogspot.fr/2010/04/sourcing-shell-script.html
不幸的是,我不知道如何在 Go 中翻译它。有没有人有想法?
相关分类