GO语言"os/exec"包中"Cmd.CombinedOutput"类型的用法及代码示例。
用法:
func(c *Cmd) CombinedOutput()([]byte, error)
CombinedOutput 运行命令并返回其组合的标准输出和标准错误。
例子:
package main
import (
"fmt"
"log"
"os/exec"
)
func main() {
cmd := exec.Command("sh", "-c", "echo stdout; echo 1>&2 stderr")
stdoutStderr, err := cmd.CombinedOutput()
if err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", stdoutStderr)
}
相关用法
- GO Cmd.Start用法及代码示例
- GO Cmd.Output用法及代码示例
- GO Cmd.StdinPipe用法及代码示例
- GO Cmd.StderrPipe用法及代码示例
- GO Cmd.Run用法及代码示例
- GO Cmd.StdoutPipe用法及代码示例
- GO Chmod用法及代码示例
- GO CanBackquote用法及代码示例
- GO CopyN用法及代码示例
- GO CopyBuffer用法及代码示例
- GO CreateTemp用法及代码示例
- GO Cut用法及代码示例
- GO CIDRMask用法及代码示例
- GO ContainsRune用法及代码示例
- GO Cbrt用法及代码示例
- GO Copysign用法及代码示例
- GO Compare用法及代码示例
- GO Cosh用法及代码示例
- GO Config用法及代码示例
- GO Count用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Cmd.CombinedOutput。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。