首頁 > 後端開發 > Golang > 對於像「iptables-restore」這樣的指令,如何正確地將輸入重新導向到 Go 中的「exec.Command」?

對於像「iptables-restore」這樣的指令,如何正確地將輸入重新導向到 Go 中的「exec.Command」?

DDD
發布: 2024-12-11 17:50:16
原創
985 人瀏覽過

How to Properly Redirect Input to `exec.Command` in Go for Commands Like `iptables-restore`?

帶有輸入重定向的exec.Command

要從Go 執行bash 指令,exec.Command() 提供了一個簡單的解決方案。然而,將輸入重定向到命令可能是一個挑戰。

考慮需要使用指令「/sbin/iptables-restore /iptables.conf」來更新 IPTables。嘗試使用 exec.Command() 呼叫此命令已被證明是不成功的。

為了解決此問題,採用了提供檔案名稱作為 cmd.StdinPipe() 輸入的策略:

stdin, err := cmd.StdinPipe()
if err != nil {
    log.Fatal(err)
}
err = cmd.Start()
if err != nil {
    log.Fatal(err)
}

io.WriteString(stdin, "/etc/iptables.conf")
登入後複製

然而,這種方法仍然無效。一個可行的解決方案是讀取“/etc/iptables.conf”的內容並將其寫入 cmd.StdinPipe():

package main

import (
    "io"
    "io/ioutil"
    "log"
    "os/exec"
)

func main() {
    bytes, err := ioutil.ReadFile("/etc/iptables.conf")
    if err != nil {
        log.Fatal(err)
    }
    cmd := exec.Command("/sbin/iptables-restore")
    stdin, err := cmd.StdinPipe()
    if err != nil {
        log.Fatal(err)
    }
    err = cmd.Start()
    if err != nil {
        log.Fatal(err)
    }
    _, err = io.WriteString(stdin, string(bytes))
    if err != nil {
        log.Fatal(err)
    }
}
登入後複製

以上是對於像「iptables-restore」這樣的指令,如何正確地將輸入重新導向到 Go 中的「exec.Command」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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