2016-10-24 00:44:56 +00:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
2017-01-07 16:30:31 +00:00
|
|
|
"syscall"
|
2016-10-24 00:44:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ExecCommand executes the given command with $SHELL
|
2018-09-27 06:27:08 +00:00
|
|
|
func ExecCommand(command string, setpgid bool) *exec.Cmd {
|
2016-10-24 00:44:56 +00:00
|
|
|
shell := os.Getenv("SHELL")
|
|
|
|
if len(shell) == 0 {
|
|
|
|
shell = "sh"
|
|
|
|
}
|
2018-09-27 06:27:08 +00:00
|
|
|
return ExecCommandWith(shell, command, setpgid)
|
2017-09-28 14:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ExecCommandWith executes the given command with the specified shell
|
2018-09-27 06:27:08 +00:00
|
|
|
func ExecCommandWith(shell string, command string, setpgid bool) *exec.Cmd {
|
|
|
|
cmd := exec.Command(shell, "-c", command)
|
|
|
|
if setpgid {
|
|
|
|
cmd.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
|
|
|
|
}
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
// KillCommand kills the process for the given command
|
|
|
|
func KillCommand(cmd *exec.Cmd) error {
|
|
|
|
return syscall.Kill(-cmd.Process.Pid, syscall.SIGKILL)
|
2016-10-24 00:44:56 +00:00
|
|
|
}
|
2016-11-06 17:15:34 +00:00
|
|
|
|
|
|
|
// IsWindows returns true on Windows
|
|
|
|
func IsWindows() bool {
|
|
|
|
return false
|
|
|
|
}
|
2017-01-07 16:30:31 +00:00
|
|
|
|
2018-09-27 06:27:08 +00:00
|
|
|
// SetNonblock executes syscall.SetNonblock on file descriptor
|
2017-01-07 16:30:31 +00:00
|
|
|
func SetNonblock(file *os.File, nonblock bool) {
|
|
|
|
syscall.SetNonblock(int(file.Fd()), nonblock)
|
|
|
|
}
|
2017-05-24 16:36:59 +00:00
|
|
|
|
|
|
|
// Read executes syscall.Read on file descriptor
|
|
|
|
func Read(fd int, b []byte) (int, error) {
|
|
|
|
return syscall.Read(int(fd), b)
|
|
|
|
}
|