erm/vendor/github.com/skratchdot/open-golang/open/exec_darwin.go

16 lines
239 B
Go
Raw Normal View History

2021-07-30 22:29:20 +00:00
// +build darwin
package open
import (
"os/exec"
)
func open(input string) *exec.Cmd {
return exec.Command("open", input)
}
func openWith(input string, appName string) *exec.Cmd {
return exec.Command("open", "-a", appName, input)
}