从 Go 程序执行 Linux Shell 内置命令
为了验证 Linux 上的程序是否存在,开发人员在尝试执行以下操作时遇到错误通过 Go 程序执行“命令”实用程序。这个错误源于“command”是一个内置的Linux命令,而不是系统$PATH中的可执行二进制文件。问题出现了:如何在 Go 程序中执行内置 Linux 命令?
原生 Go 解决方案:exec.LookPath
根据提供的资源中的建议, “命令”实用程序是 shell 内置的。对于原生 Go 执行,exec.LookPath 函数提供了一个解决方案。该函数在系统的可执行路径中搜索指定命令,如果找到则返回完整路径。
path, err := exec.LookPath("command") if err != nil { // Handle error } fmt.Println(path) // Prints the full path to the command
替代方法
如果原生 Go 方法不适合,存在替代方法:
cmd := exec.Command("which", "foobar") out, err := cmd.Output() if err != nil { // Handle error } fmt.Println(string(out)) // Prints the full path to the program (if found)
cmd := exec.Command("/bin/bash", "-c", "command -v foobar") out, err := cmd.Output() if err != nil { // Handle error } fmt.Println(string(out)) // Prints the full path to the program (if found)
以上是如何通过Go程序执行内置的Linux Shell命令?的详细内容。更多信息请关注PHP中文网其他相关文章!