2024-01-09 09:35:54 -06:00
|
|
|
// This is a simple example
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"go.wit.com/log"
|
|
|
|
|
|
|
|
// "go.wit.com/gui/gui"
|
|
|
|
// "go.wit.com/gui/gadgets"
|
|
|
|
// "go.wit.com/apps/control-panel-dns/smartwindow"
|
|
|
|
)
|
|
|
|
|
|
|
|
func fullpath(repo string) string {
|
|
|
|
return "/home/jcarr/go/src/" + repo
|
|
|
|
}
|
|
|
|
|
|
|
|
func run(path string, thing string, cmdline string) string {
|
|
|
|
parts := strings.Split(cmdline, " ")
|
|
|
|
// Create the command
|
|
|
|
cmd := exec.Command(thing, parts...)
|
|
|
|
|
|
|
|
// Set the working directory
|
|
|
|
cmd.Dir = fullpath(path)
|
|
|
|
|
|
|
|
// Execute the command
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err, "cmd error'd out", parts)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2024-01-09 09:56:33 -06:00
|
|
|
tmp := string(output)
|
|
|
|
|
|
|
|
tmp = strings.TrimSpace(tmp)
|
|
|
|
|
2024-01-09 09:35:54 -06:00
|
|
|
// Print the output
|
2024-01-09 09:56:33 -06:00
|
|
|
log.Info("run()", path, thing, cmdline, "=", tmp)
|
|
|
|
return tmp
|
2024-01-09 09:35:54 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func listFiles(directory string) []string {
|
|
|
|
var files []string
|
|
|
|
fileInfo, err := os.ReadDir(directory)
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, file := range fileInfo {
|
|
|
|
if !file.IsDir() {
|
|
|
|
files = append(files, file.Name())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return files
|
|
|
|
}
|