ref: Adding info to help

This commit is contained in:
kar
2026-01-06 01:53:54 -06:00
parent b9a8303755
commit e7aaa9b6a2
4 changed files with 17 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
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)
}