Download this file
#!/bin/bash ## TEST select + case PS3="> " select OPT in "$(ls|grep txt)" "opcion2"; do case $REPLY in 1) echo LS ;; 2) echo "NO LS" ;; esac break done