xref: /freebsd/bin/sh/tests/builtins/getopts9.0 (revision a0f704ffc16be42abf4be1573eab25857c2d1fcc)
1# $FreeBSD$
2
3args='-ab'
4getopts ab opt $args
5echo $?:$opt:$OPTARG
6for dummy in dummy1 dummy2; do
7	getopts ab opt $args
8	echo $?:$opt:$OPTARG
9done
10