Skip to content

Instantly share code, notes, and snippets.

@sunnoy
Forked from hivefans/shell_output.go
Created May 6, 2021 14:24
Show Gist options
  • Save sunnoy/18b0af1c759dde7cc4f0a5e12826880e to your computer and use it in GitHub Desktop.
Save sunnoy/18b0af1c759dde7cc4f0a5e12826880e to your computer and use it in GitHub Desktop.
get the realtime output for a shell command in golang|-|{"files":{"shell_output.go":{"env":"plain"}},"tag":"bigdata"}
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