mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
18 lines
370 B
Bash
18 lines
370 B
Bash
#error markers must be present, but the incomplete if should be parsed without remaining elements
|
|
select f in a; do; done
|
|
select FILENAME in *;
|
|
do
|
|
case $FILENAME in
|
|
"$QUIT")
|
|
echo "Exiting."
|
|
break
|
|
;;
|
|
*)
|
|
echo "You picked $FILENAME ($REPLY)"
|
|
;;
|
|
esac
|
|
done
|
|
select a in; do echo; done
|
|
|
|
echo "Example text"
|