4a9f41ec82
The builtins/getopts1.0 test failed if a single-character file existed in the current directory.
10 lines
168 B
Plaintext
10 lines
168 B
Plaintext
# $FreeBSD$
|
|
|
|
args='-ab'
|
|
getopts ab opt $args
|
|
printf '%s\n' "$?:$opt:$OPTARG"
|
|
for dummy in dummy1 dummy2; do
|
|
getopts ab opt $args
|
|
printf '%s\n' "$?:$opt:$OPTARG"
|
|
done
|