summaryrefslogtreecommitdiffstats
path: root/tests/getopts9.sub
blob: fafb0670af2aa5754e883604f98809c9cbd52c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
f()
{
	OPTIND=4

	echo \$1 = $1
}

main()
{
while getopts abcdefg opt
do
	f $opt
done
}

main -abc