首頁 > 後端開發 > Golang > 如何使用 Go 的 `exec.Cmd` 將標準輸出重新導向到檔案?

如何使用 Go 的 `exec.Cmd` 將標準輸出重新導向到檔案?

Linda Hamilton
發布: 2024-12-18 18:37:12
原創
366 人瀏覽過

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
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板