bash-dojo/filepick.sh
2024-06-30 18:43:26 +03:00

6 lines
76 B
Bash

select fname in *;
do
echo you picked $fname \($REPLY\)
break;
done