diff options
Diffstat (limited to 'shell/hush_test/hush-getopts/getopt_positional.tests')
-rwxr-xr-x | shell/hush_test/hush-getopts/getopt_positional.tests | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/hush_test/hush-getopts/getopt_positional.tests b/shell/hush_test/hush-getopts/getopt_positional.tests new file mode 100755 index 0000000..a5404a2 --- /dev/null +++ b/shell/hush_test/hush-getopts/getopt_positional.tests @@ -0,0 +1,8 @@ +set -- -q -w -e r -t -y +echo "*** no OPTIND, optstring:'we' args:$*" +var=QWERTY +while getopts "we" var; do + echo "var:'$var' OPTIND:$OPTIND" +done +# unfortunately, "rc:0" is shown since while's overall exitcode is "success" +echo "exited: var:'$var' OPTIND:$OPTIND" |