Golang : How to pipe input data to executing child process?
Problem :
Your program is executing a child process via os/exec
and you want to pipe input data to the executing process.
Solution :
Use the StdinPipe()
method and issue a .Write([]byte(your data))
to input data to the executing child process.
For example :
package main
import (
"fmt"
"os/exec"
)
func main() {
cmd := exec.Command("cat")
stdin, err := cmd.StdinPipe()
stdin.Write([]byte("Hello World!")) // <------ here
stdin.Close()
if err != nil {
panic(err)
}
data, err := cmd.Output()
if err != nil {
panic(err)
}
for k, v := range data {
fmt.Printf("key : %v, value : %v \n", k, string(v))
}
}
See also : Golang : Pipe output from one os.Exec(shell command) to another 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
+6.4k PHP : Proper way to get UTF-8 character or string length
+9.1k Golang : io.Reader causing panic: runtime error: invalid memory address or nil pointer dereference
+8.2k Golang : Reverse text lines or flip line order example
+19.1k Golang : When to use public and private identifier(variable) and how to make the identifier public or private?
+10.3k Golang : Convert file unix timestamp to UTC time example
+11.8k Golang : Verify Linux user password again before executing a program example
+20.3k Golang : Determine if directory is empty with os.File.Readdir() function
+5.8k Golang : Fix opencv.LoadHaarClassifierCascade The node does not represent a user object error
+10.2k Golang : How to profile or log time spend on execution?
+19.2k Golang : Execute shell command
+5.2k Golang : Print instead of building pyramids
+6.2k Golang : Process non-XML/JSON formatted ASCII text file example