1 2 3 4 5 6 7 8 9 10
package lib import ( "os/exec" ) func OpenFile(filename string) error { cmd := exec.Command("open", filename) return cmd.Run() }