繁体   English   中英

exec.Command().Run() 未在 Windows 中正确执行命令

[英]exec.Command().Run() not executing command properly in Windows

我有一个名为 config-lint 的 linting 实用程序: https : //github.com/stelligent/config-lint ,我为 Windows 下载了它。

我下载了它并将其添加到路径中并能够运行它,如下所示

E:\>config-lint -terraform config-lint-master\example-files\config [   {
    "AssertionMessage": "None expression fails: ",
    "Category": "resource",
    "CreatedAt": "2020-10-02T10:23:19Z",
    "Filename": "config-lint-master\\example-files\\config\\s3.tf",
    "LineNumber": 43,
    "ResourceID": "bucket_with_not",
    "ResourceType": "aws_s3_bucket_policy",
    "RuleID": "S3_NOT_ACTION",
    "RuleMessage": "Should not use NotAction in S3 bucket policy",
    "Status": "WARNING"   },   {
    "AssertionMessage": "Not expression fails",
    "Category": "resource",
    "CreatedAt": "2020-10-02T10:23:19Z",
    "Filename": "config-lint-master\\example-files\\config\\security_group.tf",
    "LineNumber": 1,
    "ResourceID": "allow_all",
    "ResourceType": "aws_security_group",
    "RuleID": "SG_INGRESS_ALL_PROTOCOLS",
    "RuleMessage": "Best practices recommend not opening all protocols and ports to ingress traffic",
    "Status": "WARNING"   },

--- 更多输出

我希望通过 go Lang 中的 exec 包实现相同的目标。 下面是我的代码

 args := []string{"-terraform", "E:\\config-lint-master\\example-files\\config"}
    app := "config-lint"
    cmd := exec.Command(app, args...)
    //cmd := exec.Command("config-lint", "-terraform", "E:\\config-lint-master\\example-files\\config")
    cmd.Stdout = &bytes.Buffer{}
    cmdOp := &bytes.Buffer{}
    cmd.Stdout = cmdOp
    err := cmd.Run()
    if err != nil {
        fmt.Println("Error->", err)
    } else {
        fmt.Println(cmdOp)
    }

在执行此操作时,我收到错误消息

错误->退出状态 4294967295

我不知道这意味着什么,我是 Go Lang 的新手。

注意:当我通过在最后传递文件名使用以下命令运行它时,它会执行。 传递目录时它似乎不起作用。

 args := []string{"-terraform", "E:\\config-lint-master\\example-files\\config\\elb.tf"}

config-lint 可以如下运行

config-lint -terraform <FILE_OR_DIRECTORY_OF_TF_FILES>

参考: https : //stelligent.github.io/config-lint/#/terraform

Golang 版本:go 版本 go1.14.6 windows/amd64

操作系统:Win 10 Home,版本:19041.450

问题是,由于某种原因,即使在 shell 设置中,该命令也会失败。 所以我所做的是,除非输出为空,否则忽略错误:

package main

import (
   "fmt"
   "log"
   "os/exec"
)

func main() {
   o := exec.Command(
      "config-lint", "-terraform", "config-lint-master/example-files/config",
   )
   y, e := o.Output()
   if len(y) == 0 {
      log.Fatal(e)
   }
   fmt.Printf("%s", y)
}

或者你可以直接输出到控制台:

package main

import (
   "os"
   "os/exec"
)

func main() {
   o := exec.Command(
      "config-lint", "-terraform", "config-lint-master/example-files/config",
   )
   o.Stdout = os.Stdout
   o.Run()
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM