Golang : Pipe output from one os.Exec(shell command) to another command
Problem :
You want to execute one shell command with os.Exec() function, wait for it to complete and then pipe the output to another shell command. In Unix/Linux, this is something similar to... for example:
ls | wc -l
Solution :
Use the io.Pipe() function to pipe output from the first executed command to the second executing command. For example :
package main
import (
"bytes"
"io"
"os/exec"
"fmt"
)
func main() {
first := exec.Command("ps", "-ef")
second := exec.Command("wc", "-l")
// http://golang.org/pkg/io/#Pipe
reader, writer := io.Pipe()
// push first command output to writer
first.Stdout = writer
// read from first command output
second.Stdin = reader
// prepare a buffer to capture the output
// after second command finished executing
var buff bytes.Buffer
second.Stdout = &buff
first.Start()
second.Start()
first.Wait()
writer.Close()
second.Wait()
total := buff.String() // convert output to string
fmt.Printf("Total processes running : %s", total)
}
Sample output :
Total processes running : 89
Reference :
See also : Golang : Execute shell command
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.2k Golang : Multiplexer with net/http and map
+12.7k Golang : Transform comma separated string to slice example
+5.2k Linux : How to set root password in Linux Mint
+15.2k Golang : package is not in GOROOT during compilation
+12.6k Golang : "https://" not allowed in import path
+13.8k Android Studio : Password input and reveal password example
+5.7k Fix fatal error: evacuation not done in time problem
+5.8k Unix/Linux/MacOSx : Get local IP address
+8.2k Golang : Tell color name with OpenCV example
+10.7k Golang : Get local time and equivalent time in different time zone
+5.9k Golang : Markov chains to predict probability of next state example
+12.5k Golang : Extract part of string with regular expression