ksh and getopts

Hello,

I'm writing a script that uses command line options and arguments. To handle these, I'm using getopts. Is there a way to set up an option where an argument is optional?

What I'm trying to do is offer -v for verbose output, -vv for increased output -vvv etc.

Any suggestions?

Thanks!

FYI - Resolved. I just counted the number of v's that were being passed into the script.