i-bash/tests/getopts9.sub
2016-09-15 16:59:08 -04:00

16 lines
99 B
Text

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