diff --git a/prueba.go b/prueba.go deleted file mode 100644 index 70a89ed..0000000 --- a/prueba.go +++ /dev/null @@ -1,15 +0,0 @@ -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) -}