Skip to content

Instantly share code, notes, and snippets.

@lee8oi
Last active January 9, 2025 15:31
Show Gist options
  • Save lee8oi/ec404fa99ea0f6efd9d1 to your computer and use it in GitHub Desktop.
Save lee8oi/ec404fa99ea0f6efd9d1 to your computer and use it in GitHub Desktop.
Using os.StartProcess() in Go for platform-independent system command execution.
package main
import (
"os"
"os/exec"
)
func Start(args ...string) (p *os.Process, err error) {
if args[0], err = exec.LookPath(args[0]); err == nil {
var procAttr os.ProcAttr
procAttr.Files = []*os.File{os.Stdin,
os.Stdout, os.Stderr}
p, err := os.StartProcess(args[0], args, &procAttr)
if err == nil {
return p, nil
}
}
return nil, err
}
func main() {
if proc, err := Start("ping", "-c 3", "www.google.com"); err == nil {
proc.Wait()
}
if proc, err := Start("zsh"); err == nil {
proc.Wait()
}
}
@rsvix
Copy link

rsvix commented Sep 10, 2024

Hi, thank you for sharing.
Do you know how i can capture the output stream from the StartProcess command in realtime?

@lee8oi
Copy link
Author

lee8oi commented Sep 10, 2024 via email

@rsvix
Copy link

rsvix commented Sep 10, 2024

Thank you @lee8oi
I've tried using io pipes, MultiReader and bufio.NewScanner, but with no luck

For anyone reading, im trying to do something like this, but using os.StartProcess instead of exec.Command

multi := io.MultiReader(stdout, stderr)

if err := cmd.Start(); err != nil {
return err
}

in := bufio.NewScanner(multi)

for in.Scan() {
log.Printf(in.Text()) // write each line to the log or anything else
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment