[go: up one dir, main page]

Menu

[r1]: / current / TEST  Maximize  Restore  History

Download this file

18 lines (14 with data), 176 Bytes

#!/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