freebsd-nq/bin/sh/tests/builtins/getopts8.0

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"