Skip to content

Instantly share code, notes, and snippets.

@crgimenes
Created April 20, 2018 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crgimenes/6dc808548911eb24751cf64df664a800 to your computer and use it in GitHub Desktop.
Save crgimenes/6dc808548911eb24751cf64df664a800 to your computer and use it in GitHub Desktop.
simple exec example
func execHelper(path, name string, arg ...string) (err error) {
cmd := exec.Command(name, arg...)
cmd.Dir = path
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err = cmd.Run()
return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment