在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中文網其他相關文章!