mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 00:27:08 -04:00
The builtins/getopts1.0 test failed if a single-character file existed in the current directory.
9 lines
168 B
Text
9 lines
168 B
Text
# $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
|