summary refs log tree commit diff
path: root/bin/1sh/tests/builtins/getopts8.0
blob: 841b3f4e9c7143152037102502c031515943db92 (plain) (blame)
1
2
3
4
5
6
7
8
# $FreeBSD: releng/12.1/bin/sh/tests/builtins/getopts8.0 265849 2014-05-10 19:18:49Z jilles $

set -- -yz -wx
opt=wrong1 OPTARG=wrong2
while getopts :x opt; do
	echo "$opt:${OPTARG-unset}"
done
echo "OPTIND=$OPTIND"