filebrowser/tools/commands/commands.go

16 lines
274 B
Go
Raw Normal View History

2016-03-06 19:18:46 +00:00
package commands
import (
"os"
"os/exec"
)
// RunCommand executes an external command
func Run(command string, args []string, path string) error {
cmd := exec.Command(command, args...)
cmd.Dir = path
cmd.Stdout = os.Stderr
cmd.Stderr = os.Stderr
return cmd.Run()
}