在 Go 中,利用 exec.Command 函數提供了執行命令的強大方法。然而,當涉及使用輸入重新導向執行命令時,了解如何正確使用 exec.Command 至關重要。本問題探討如何執行一個簡單的 Bash 命令,該命令使用 exec.Command 從檔案中讀取資料。
目標是從 Go 執行以下指令:
/sbin/iptables-restore < /etc/iptables.conf
此指令從指定檔案讀取 IPTables 設定並重新整理 IPTables。然而,使用 exec.Command 將此命令直接轉換為 Go 程式碼具有挑戰性。
該問題概述了使用 exec.Command 執行該命令的幾次不成功的嘗試。兩種常見的方法是:
嘗試傳遞重定向運算符
作為參數:cmd := exec.Command("/sbin/iptables-restore", "<", "/etc/iptables.conf")
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) } io.WriteString(stdin, "/etc/iptables.conf")
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) } }
以上是如何使用 Go 的 `exec.Command` 執行帶有輸入重定向的命令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!