Files
rmpc_controller/prueba.go
T
2026-01-06 01:53:54 -06:00

16 lines
218 B
Go

package main
import (
"os/exec"
"fmt"
)
func main() {
cmd := exec.Command("bash", "-c", `echo "hola" | dmenu`)
output, err := cmd.CombinedOutput()
if err != nil {
fmt.Println(err)
}
fmt.Println(output)
}