Link to home
Start Free TrialLog in
Avatar of andieje
andieje

asked on

lots of -v in mysql command

Hi

I am looking at a shell script that contains this command

/usr/bin/mysql -v -v -v

why are there 3 -v?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Tintin
Tintin

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You didn't have to ask this Q on EE. You would have seen the answer if you had typed man mysql in a command  window. There are GUI interfaces to the man system as well, if you prefer that.
An abbreviation for "manual", the man system should be your first port of call when seeking documentation. Among other information, on typing man mysql you will see
--verbose, -v
Verbose mode. Produce more output about what the program does. This option can be given multiple times to produce more and more output. (For example, -v -v -v produces table output format even in batch mode.)
RTFM: Read The Fine Manual
Avatar of andieje
andieje

ASKER

Thanks duncan, but sometimes people are on their phones and not at pcs when they need quick answers to something