首页 > 后端开发 > Golang > 如何使用 Go 的 `exec.Cmd` 将标准输出重定向到文件?

如何使用 Go 的 `exec.Cmd` 将标准输出重定向到文件?

Linda Hamilton
发布: 2024-12-18 18:37:12
原创
373 人浏览过

How to Redirect stdout to a File Using Go's `exec.Cmd`?

在 Go 中使用 exec.Cmd 将 stdout 重定向到文件

在 Go 中将 exec.Cmd 的 stdout 写入文件涉及捕获输出并将其重定向到文件。以下是如何完成此操作的指南:

package main

import (
    "os"
    "os/exec"
)

func main() {

    // Open the out file for writing
    outfile, err := os.Create("./out.txt")
    if err != nil {
        panic(err)
    }
    defer outfile.Close()

    // Create the command and assign the outfile to its Stdout
    cmd := exec.Command("echo", "'WHAT THE HECK IS UP'")
    cmd.Stdout = outfile

    // Start the command and wait for it to finish
    err = cmd.Start(); if err != nil {
        panic(err)
    }
    cmd.Wait()
}
登录后复制

通过将输出文件分配给 cmd.Stdout,我们将命令的 stdout 输出直接重定向到该文件。当调用 cmd.Start() 方法时,命令将执行,其输出将写入指定文件。

以上是如何使用 Go 的 `exec.Cmd` 将标准输出重定向到文件?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板