i-bash/tests/getopts8.sub
2016-09-15 16:59:08 -04:00

13 lines
144 B
Text

f()
{
typeset OPTIND=1
typeset opt
while getopts ":abcxyz" opt
do
echo opt: "$opt"
if [[ $opt = y ]]; then f -abc ; fi
done
}
f -xyz