为了账号安全,请及时绑定邮箱和手机立即绑定

Golang 'exec.Command' 对待单引号参数特殊吗?

Golang 'exec.Command' 对待单引号参数特殊吗?

Go
慕勒3428872 2022-12-13 16:03:43
我指的是如何使用未知参数执行系统命令?在我的 ubuntu shell 上运行 jq 命令。下面是我试过的代码import (    "fmt"    "os/exec"    "sync"    "strings")func exeCmd(cmd string, wg *sync.WaitGroup) {    fmt.Println("command is ",cmd)    // splitting head => g++ parts => rest of the command    parts := strings.Fields(cmd)    head := parts[0]    parts = parts[1:len(parts)]      out, err := exec.Command(head,parts...).Output()    if err != nil {      fmt.Printf("%s", err)    }    fmt.Printf("%s", out)    wg.Done() // Need to signal to waitgroup that this goroutine is done  }func main() {    wg := new(sync.WaitGroup)    wg.Add(1)    x := []string{"jq '(.data.legacyCollection.collectionsPage.stream.edges|map({node:(.node|{url,firstPublished,headline:{default:.headline.default},summary})})) as $edges|{data:{legacyCollection:{collectionsPage:{stream:{$edges}}}}}' long-response.json > short-response.json"}    exeCmd(x[0], wg)    wg.Wait()}输出如下,似乎命令被正确检测到,但 shell 返回退出状态 3,即“没有这样的过程”?command is  jq '(.data.legacyCollection.collectionsPage.stream.edges|map({node:(.node|{url,firstPublished,headline:{default:.headline.default},summary})})) as $edges|{data:{legacyCollection:{collectionsPage:{stream:{$edges}}}}}' long-response.json > short-repsonse.json exit status 3任何人都可以帮忙吗?我想要的是一个 go 函数,它可以像在 Linux shell 上一样包装和运行 bash 命令行尝试了其他方法:删除了我的 jq 命令中的单引号,我的命令得到了我期望的输出执行 - 一个解析的 json 文件但是,我仍然有一个存在状态 2,任何人都可以解释为什么我的命令行中的单引号会影响 G 解析命令的方式?为什么在我的 shell 命令完成后我仍然存在 2?
查看完整描述

1 回答

?
幕布斯6054654

TA贡献1876条经验 获得超7个赞

该程序执行 jq 命令,而不是 shell。jq 命令不理解传递给命令的 shell 语法(引号和 I/O 重定向)。


使用以下代码运行命令,标准输出重定向到 short-response.json。


cmd := exec.Command("jq",

    "(.data.legacyCollection.collectionsPage.stream.edges|map({node:(.node|{url,firstPublished,headline:{default:.headline.default},summary})})) as $edges|{data:{legacyCollection:{collectionsPage:{stream:{$edges}}}}}",

    "long-response.json")

f, err := os.Create("short-response.json")

if err != nil {

    log.Fatal(err)

}

defer f.Close()

cmd.Stdout = f  // set stdout to short-response.json

err = cmd.Run()

if err != nil {

    log.Fatal(err)

}


查看完整回答
反对 回复 2022-12-13
  • 1 回答
  • 0 关注
  • 188 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信