1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
f() { OPTIND=4 echo \$1 = $1 } main() { while getopts abcdefg opt do f $opt done } main -abc