File pick example

This commit is contained in:
Mert Gör 🇹🇷 2024-06-30 18:43:26 +03:00
parent 6e1cefb3ec
commit f2e19f7671
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2024-06-30 hwpplayer1 <hwpplayer1@debian>
* filepick.sh: file pick example
* bash.pdf: BASH Manual added
* animal.sh: animal bash example

5
filepick.sh Normal file
View File

@ -0,0 +1,5 @@
select fname in *;
do
echo you picked $fname \($REPLY\)
break;
done