dongrou839975 2015-11-09 08:18
浏览 320
已采纳

使用exec.Cmd.Run()运行命令时,如何获取所有输出行?

I'm using glide to manage dependencies on my project. I created a script that runs go test $(glide novendor) (which tests all directories, excluding the vendor/ one) for me. While it works, the output for the run command doesn't go beyond the 1st line:

ok my/project/scripts 0.005s

Here is the portion of the script that runs it:

// Get the paths to test (excluding the "vendor/" directory)
cmd := exec.Command("glide", "novendor")
var out bytes.Buffer
cmd.Stdout = &out
err = cmd.Run()
if err != nil {
    log.Fatal("Could not run `glide novendor`: ", err)
}
glidenovendor := []string{"test"}
// Represents the "test ./src/... ./scripts/..." portion of the command
glidenovendor = append(glidenovendor, strings.Split(out.String(), " ")...)

// Run `go test ./src/... ./scripts/...`
cmd = exec.Command("go", glidenovendor...)
cmd.Stdout = os.Stdout
err = cmd.Run()
if err != nil {
    log.Fatal("Could not run `go test` command with args: ", cmd, err)
}

Running the command directly on my shell gives me all lines of out put as expected.

How do I make my script print the entire output?

  • 写回答

1条回答 默认 最新

  • douyongdao4046 2015-11-09 08:53
    关注

    It turns out that line

    glidenovendor = append(glidenovendor, strings.Split(out.String(), " ")...)

    for some reason added a new line character " " to the last string element of the glidenovendor slice. I still have no idea why. But removing it with the snippet below got the script running as expected:

    // Remove trailing LF from strings in `glidenovendor`
    for i, v := range glidenovendor {
        glidenovendor[i] = strings.Trim(v, "
    ")
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题