DEBSOURCES
Skip Quicknav
sources / bash / 5.0-4 / tests / getopts9.sub
12345678910111213141516
f() { OPTIND=4 echo \$1 = $1 } main() { while getopts abcdefg opt do f $opt done } main -abc