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