Quote:
|
Originally Posted by simcox1
One more thing I'd like to ask. I like verbose output, and use the -v option when I run the script. In the script there are VERBOSE and VERBOSE2 options. Is it enough to change VERBOSE -q to VERBOSE -v to get verbose output?
|
Take a look at how the arguments are parsed - this for "-v":
Code:
v ) echo "Enabling verbose output...."
DEBUG=1
VERBOSE="-v --progress"
VERBOSE2="-nv"
So there are your variables you need to set...
I also noticed that I no longer use that VERBOSE2 variable in the script... so it will go in the next update.
Eric