package main
import (
"fmt"
"os/exec"
"path/filepath"
)
func init() {
exec.Command("touch", "/tmp/hello.yaml").Run()
exec.Command("touch", "/tmp/world.yml").Run()
}
func main() {
files, _ := filepath.Glob("/tmp/*.y*ml")
fmt.Println(files)
}