9 lines
132 B
Go
9 lines
132 B
Go
package inotifywaitgo
|
|
|
|
import "os/exec"
|
|
|
|
func killOthers() error {
|
|
cmd := exec.Command("pkill", "inotifywait")
|
|
return cmd.Run()
|
|
}
|