File: cmd.go

package info (click to toggle)
golang-github-muka-go-bluetooth 5.60-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,688 kB
  • sloc: makefile: 92; sh: 2
file content (21 lines) | stat: -rw-r--r-- 357 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cmd

import (
	"os/exec"

	log "github.com/sirupsen/logrus"
)

// Exec Execute a command and collect the output
func Exec(args ...string) (string, error) {

	baseCmd := args[0]
	cmdArgs := args[1:]

	log.Tracef("Exec: %s %s", baseCmd, cmdArgs)

	cmd := exec.Command(baseCmd, cmdArgs...)
	res, err := cmd.CombinedOutput()

	return string(res), err
}