Files
bash/tests/getopts9.sub
2014-12-02 16:14:59 -05:00

17 lines
99 B
Plaintext

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