repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Better name for examples dir
[lcapit-junk-code.git]
/
snippets
/
bash
/
select.sh
blob
bc32326900b7c6fe62f4a8576e853589813d1f1d
1
#!/bin/bash
2
#
3
# Example of bash select usage.
4
#
5
# Luiz Fernando N. Capitulino
6
# <lcapitulino@gmail.com>
7
8
select
name
in
again exitnow
;
do
9
if
[
"
$name
"
=
"exitnow"
];
then
10
exit
0
11
fi
12
echo
$name
13
done