blob: a5404a2a016103ba719cce336b0c34aa874d14e8 [file] [log] [blame]
Denys Vlasenko74d40582017-08-11 01:32:46 +02001set -- -q -w -e r -t -y
2echo "*** no OPTIND, optstring:'we' args:$*"
3var=QWERTY
4while getopts "we" var; do
5 echo "var:'$var' OPTIND:$OPTIND"
6done
7# unfortunately, "rc:0" is shown since while's overall exitcode is "success"
8echo "exited: var:'$var' OPTIND:$OPTIND"