我想使用 golang 的 exec.Command() 运行以下 bash 命令
ls > sample.txt
为此我写
_,err:=exec.Command("ls",">","sample.txt").Output()
但这似乎不起作用。我知道我可以使用
exec.Command().StdoutPipe()
但我想以这种方式专门写。知道我如何在 golang 中做到这一点吗?
杨魅力
相关分类