Go衍生(Spawn)新进程

package mainimport "fmt"import "io/ioutil"import "os/exec"func main() {
    dateCmd := exec.Command("date")
    dateOut, err := dateCmd.Output()    if err != nil {        panic(err)
    }
    fmt.Println("> date")
    fmt.Println(string(dateOut))

    grepCmd := exec.Command("grep", "hello")
    grepIn, _ := grepCmd.StdinPipe()
    grepOut, _ := grepCmd.StdoutPipe()
    grepCmd.Start()
    grepIn.Write([]byte("hello grep\ngoodbye grep"))
    grepIn.Close()
    grepBytes, _ := ioutil.ReadAll(grepOut)
    grepCmd.Wait()
    fmt.Println("> grep hello")
    fmt.Println(string(grepBytes))

    lsCmd := exec.Command("bash", "-c", "ls -a -l -h")
    lsOut, err := lsCmd.Output()    if err != nil {        panic(err)
    }
    fmt.Println("> ls -a -l -h")
    fmt.Println(string(lsOut))
}

执行结果:

> date
2015年 1月23日 星期五 21时29分39秒 CST

> grep hello
hello grep

> ls -a -l -h
total 32
drwxr-xr-x   6 itfanr  admin   204B  1 23 21:29 .
drwxrwxrwx   6 itfanr  admin   204B 12 27 09:52 ..
-rw-rw-r--@  1 itfanr  admin   721B  1 23 21:29 excute.go
drwxr-xr-x  13 itfanr  admin   442B  1 22 21:06 github.com

参考:

  1. https://gobyexample.com/spawning-processes

  2. http://tobegit3hub1.gitbooks.io/understanding-linux-processes/content/go_example/spawn.html

3. https://github.com/mmcgrana/gobyexample


本文来自:开源中国博客

感谢作者:itfanr

查看原文:Go衍生(Spawn)新进程

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。