Created
May 28, 2015 08:13
-
-
Save ochinchina/9e409a88e77c3cfd94c3 to your computer and use it in GitHub Desktop.
golang: connect two commands with pipe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"io" | |
"os" | |
"os/exec" | |
) | |
func main() { | |
//create command | |
catCmd := exec.Command( "cat", os.Args[1] ) | |
wcCmd := exec.Command( "wc" ) | |
//make a pipe | |
reader, writer := io.Pipe() | |
var buf bytes.Buffer | |
//set the output of "cat" command to pipe writer | |
catCmd.Stdout = writer | |
//set the input of the "wc" command pipe reader | |
wcCmd.Stdin = reader | |
//cache the output of "wc" to memory | |
wcCmd.Stdout = &buf | |
//start to execute "cat" command | |
catCmd.Start() | |
//start to execute "wc" command | |
wcCmd.Start() | |
//waiting for "cat" command complete and close the writer | |
catCmd.Wait() | |
writer.Close() | |
//waiting for the "wc" command complete and close the reader | |
wcCmd.Wait() | |
reader.Close() | |
//copy the buf to the standard output | |
io.Copy( os.Stdout, &buf ) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment