Home | History | Annotate | Download | only in src

Lines Matching full:getopts

5803 	Check that getopts works in functions
5807 while getopts B oc; do
5822 while getopts K oc; do
5837 getopts kbfl optc
5841 getopts kbfl optc
5845 getopts kbfl optc
5852 getopts kbfl optc
5856 getopts kbfl optc
5860 getopts kbfl optc
6195 Check that getopts works as intended, for readonly-2b to be valid
6197 "$__progname" -c 'set -- -a b; getopts a c; echo $? $c .; getopts a c; echo $? $c .' || echo aborted, $?
6204 http://austingroupbugs.net/view.php?id=367 for getopts
6206 "$__progname" -c 'readonly c; set -- -a b; getopts a c; echo $? $c .' || echo aborted, $?
11772 name: utilities-getopts-1
11774 getopts sets OPTIND correctly for unparsed option
11777 while getopts :a optc; do
11787 name: utilities-getopts-2
11792 while getopts a: optc; do