Gitiles
Code Review
Sign In
gerrit.witaqua.org
/
external_bash
/
9f59ea3199a83697b4e1adcd4ac35484ac824c67
/
.
/
tests
/
getopts8.sub
blob: 6aeeca6f50546575ca848384374df12d1cddc257 [
file
] [
log
] [
blame
]
Chet Ramey
a0c0a00
2016-09-15 16:59:08 -0400
[
diff
] [
blame
]
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