golang exec管道

carl · · 3642 次点击 · 开始浏览    置顶
这是一个创建于 的主题,其中的信息可能已经有所发展或是发生改变。

先尝试在exec代码直接加管道 ``` cmd := exec.Command("ps","-ef","|","grep", "proc") ``` 毫无疑问,运行报错,所以肯定不是直接这么写。 因为cmd可以配置Stdin。其实就是我们要执行命令的输入。于是在运行第二条命令的时候可以用第一条命令的Stdout 代码如下: ``` c1 := exec.Command("ps","-ef") c2 := exec.Command("grep", "proc") c2.Stdin, _ = c1.StdoutPipe() c2.Stdout = os.Stdout _ = c2.Start() _ = c1.Run() _ = c2.Wait() ``` 当然,就是将io.Reader转换成io.Writer.于是还可以这么写: ``` c1 := exec.Command("ps","-ef") c2 := exec.Command("grep", "proc") r, w := io.Pipe() c1.Stdout = w c2.Stdin = r var b2 bytes.Buffer c2.Stdout = &b2 c1.Start() c2.Start() c1.Wait() w.Close() c2.Wait() io.Copy(os.Stdout, &b2) ``` 原文:http://wordpress-1-edcapdingshn5.tenxapp.com/2015/12/04/golang-exec-pipe/

有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

3642 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传