Skip to content

Instantly share code, notes, and snippets.

@r6m
Forked from hivefans/shell_output.go
Created January 23, 2018 07:38
Show Gist options
  • Save r6m/06f298f1b99fcf9958295c3f8dd05c12 to your computer and use it in GitHub Desktop.
Save r6m/06f298f1b99fcf9958295c3f8dd05c12 to your computer and use it in GitHub Desktop.
get the realtime output for a shell command in golang
package main
import (
"bufio"
"fmt"
"io"
"os"
"os/exec"
"strings"
)
func main() {
cmdName := "ping 127.0.0.1"
cmdArgs := strings.Fields(cmdName)
cmd := exec.Command(cmdArgs[0], cmdArgs[1:len(cmdArgs)]...)
stdout, _ := cmd.StdoutPipe()
cmd.Start()
oneByte := make([]byte, 100)
num := 1
for {
_, err := stdout.Read(oneByte)
if err != nil {
fmt.Printf(err.Error())
break
}
r := bufio.NewReader(stdout)
line, _, _ := r.ReadLine()
fmt.Println(string(line))
num = num + 1
if num > 3 {
os.Exit(0)
}
}
cmd.Wait()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment