Home | History | Annotate | Download | only in src

Lines Matching full:optc

6410 	getopts kbfl optc
6411 echo "line 2: ret=$?, optc=$optc, OPTIND=$OPTIND"
6414 getopts kbfl optc
6415 echo "line 4: ret=$?, optc=$optc, OPTIND=$OPTIND"
6418 getopts kbfl optc
6419 echo "line 6: ret=$?, optc=$optc, OPTIND=$OPTIND"
6425 getopts kbfl optc
6426 echo "line 20: ret=$?, optc=$optc, OPTIND=$OPTIND"
6429 getopts kbfl optc
6430 echo "line 40: ret=$?, optc=$optc, OPTIND=$OPTIND"
6433 getopts kbfl optc
6434 echo "line 60: ret=$?, optc=$optc, OPTIND=$OPTIND"
6437 line 2: ret=0, optc=f, OPTIND=2
6443 line 4: ret=0, optc=b, OPTIND=3
6450 line 6: ret=0, optc=k, OPTIND=4
6453 line 20: ret=0, optc=f, OPTIND=2
6459 line 40: ret=1, optc=?, OPTIND=2
6466 line 60: ret=1, optc=?, OPTIND=2
12824 while getopts :a optc; do
12825 echo "OPTARG=$OPTARG, OPTIND=$OPTIND, optc=$optc."
12829 OPTARG=, OPTIND=2, optc=a.
12830 OPTARG=, OPTIND=3, optc=a.
12831 OPTARG=x, OPTIND=4, optc=?.
12839 while getopts a: optc; do
12840 echo "OPTARG=$OPTARG, OPTIND=$OPTIND, optc=$optc."
12844 OPTARG=Mary, OPTIND=3, optc=a.
12845 OPTARG=, OPTIND=4, optc=?.