首頁 > 後端開發 > Golang > 如何在 Go 的 `exec.Command()` 中正確管道指令輸出?

如何在 Go 的 `exec.Command()` 中正確管道指令輸出?

DDD
發布: 2024-12-15 05:24:10
原創
989 人瀏覽過

How to Properly Pipe Command Outputs in Go's `exec.Command()`?

如何在Go 的exec.Command() 中透過管道傳輸命令鏈的結果

當在Go 中使用exec.Command() 執行命令時,透過管道傳輸一個命令的輸出向他人發出命令可能具有挑戰性。

請考慮以下事項例如:

out, err := exec.Command("ps", "cax").Output() // Works and prints command output
登入後複製

但是,當嘗試將ps 的輸出透過管道傳送到grep 時,此指令失敗,退出狀態為1:

out, err := exec.Command("ps", "cax | grep myapp").Output() // Fails
登入後複製

慣用管道解決方案

要解決這個問題,更慣用的方法是對每個命令使用exec.Command() 並直接連接其標準輸入/輸出流。操作方法如下:

package main

import (
    "fmt"
    "os/exec"
)

func main() {
    grep := exec.Command("grep", "redis")
    ps := exec.Command("ps", "cax")

    // Connect ps's stdout to grep's stdin.
    pipe, _ := ps.StdoutPipe()
    defer pipe.Close()
    grep.Stdin = pipe

    // Start ps first.
    ps.Start()

    // Run and get the output of grep.
    res, _ := grep.Output()

    fmt.Println(string(res))
}
登入後複製

這允許您執行多個命令並根據需要通過管道傳輸它們的輸入和輸出,從而提供靈活的方式來處理命令鏈。

以上是如何在 Go 的 `exec.Command()` 中正確管道指令輸出?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板