9 lines
134 B
Plaintext
9 lines
134 B
Plaintext
# $FreeBSD$
|
|
|
|
set -- -yz -wx
|
|
opt=wrong1 OPTARG=wrong2
|
|
while getopts :x opt; do
|
|
echo "$opt:${OPTARG-unset}"
|
|
done
|
|
echo "OPTIND=$OPTIND"
|