github.com/tiagovtristao/plz@v13.4.0+incompatible/src/core/exec_other.go (about)

     1  // +build !linux
     2  
     3  package core
     4  
     5  import "os/exec"
     6  
     7  // ExecCommand executes an external command.
     8  func ExecCommand(command string, args ...string) *exec.Cmd {
     9  	return exec.Command(command, args...)
    10  }