10 lines
214 B
Go
10 lines
214 B
Go
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
|
|
|
|
package main
|
|
|
|
import "os/exec"
|
|
|
|
func runNotification(command string) {
|
|
_ = exec.Command("/bin/sh", "-c", command).Run()
|
|
}
|