repo.or.cz
/
bush.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
improve of cmpl.
[bush.git]
/
testing
/
3.OriginalTest.dir
/
6.cmd
/
getopts
/
getopts8.sub
blob
6aeeca6f50546575ca848384374df12d1cddc257
1
f()
2
{
3
typeset OPTIND=1
4
typeset opt
5
6
while getopts ":abcxyz" opt
7
do
8
echo opt: "$opt"
9
if [[ $opt = y ]]; then f -abc ; fi
10
done
11
}
12
13
f -xyz