Golang : Capture text return from exec function example
Problem:
You want to capture the text result return by exec function. How to do that?
Solution:
The code example below demonstrates how to capture the text result returns by the os/exec function. What the code does is to prepare in advance a pipe(io.ReadCloser) first before executing the exec program to capture the standard output. Then the value will be stored(appended) in a string slice for display at the end of the program.
Here you go!
package main
import (
"bufio"
"fmt"
"os"
"os/exec"
)
func handleError(err error) {
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
func main() {
cmd := exec.Command("whoami")
// capture the output and error pipes
stdout, err := cmd.StdoutPipe()
handleError(err)
err = cmd.Start()
handleError(err)
defer cmd.Wait()
buff := bufio.NewScanner(stdout)
var returnText []string
for buff.Scan() {
returnText = append(returnText, buff.Text())
}
fmt.Println(returnText)
}
Happy coding!
References:
See also : Golang : Capture stdout of a child process and act according to the result
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
+9.7k Golang : Channels and buffered channels examples
+9.4k Golang : Eroding and dilating image with OpenCV example
+12.6k Golang : Get terminal width and height example
+13.6k Golang : convert rune to unicode hexadecimal value and back to rune character
+6.4k Golang : Find the longest line of text example
+17.8k Golang : Check if a directory exist or not
+21.3k Golang : Convert string slice to struct and access with reflect example
+19k Golang : Execute shell command
+5.5k Golang : Error handling methods
+28.9k Golang : missing Git command
+20.4k Golang : Saving private and public key to files
+32k Golang : Copy directory - including sub-directories and files