blob: 6aeeca6f50546575ca848384374df12d1cddc257 [file] [log] [blame]
Chet Rameya0c0a002016-09-15 16:59:08 -04001f()
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
13f -xyz