File: exec_darwin.go

package info (click to toggle)
golang-github-skratchdot-open-golang 0.0~git20160302.0.75fb7ed-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 128 kB
  • sloc: sh: 380; makefile: 7
file content (15 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// +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)
}