blob: 0ca1cea131ba8cf1241e65617c0d1d35fe0f7544 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package utils
import (
"context"
"fmt"
"os/exec"
"time"
)
// CmdExists ...
func CmdExists(cmd string) bool {
_, err := exec.LookPath(cmd)
return err == nil
}
// RunCmd ...
func RunCmd(timeout int, command string, args ...string) error {
ctx, cancel := context.WithTimeout(context.Background(), time.Duration(timeout)*time.Second)
defer cancel()
cmd := exec.CommandContext(ctx, command, args...)
out, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("cmd.CombinedOutput error: %w\n%s", err, out)
}
return nil
}
|