DEBSOURCES
Skip Quicknav
sources / bash / 5.0-4 / tests / getopts8.sub
12345678910111213
f() { typeset OPTIND=1 typeset opt while getopts ":abcxyz" opt do echo opt: "$opt" if [[ $opt = y ]]; then f -abc ; fi done } f -xyz