i-bash/tests/getopts9.sub

17 lines
99 B
Text
Raw Normal View History

f()
{
OPTIND=4
echo \$1 = $1
}
main()
{
while getopts abcdefg opt
do
f $opt
done
}
main -abc