switch -V and -v options, for sanity's sake

This commit is contained in:
david 2002-05-25 22:45:48 +00:00
parent 0e5d380dde
commit c4452d0238
2 changed files with 3 additions and 2 deletions

View File

@ -9,3 +9,4 @@
can write their own meta-data when not using
Lampadas and still get a complete DocBook file.
CVS Switched -V and -v, now -v is version, -V is verbose.

View File

@ -22,10 +22,10 @@ while (1) {
shift(@ARGV);
$dbfile = $ARGV[0];
shift(@ARGV);
} elsif($ARGV[0] eq "-v" or $ARGV[0] eq "--verbose") {
} elsif($ARGV[0] eq "-V" or $ARGV[0] eq "--verbose") {
$verbose++;
shift(@ARGV);
} elsif($ARGV[0] eq "-V" or $ARGV[0] eq "--version") {
} elsif($ARGV[0] eq "-v" or $ARGV[0] eq "--version") {
&version();
exit(0);
} elsif($ARGV[0] eq "-h" or $ARGV[0] eq "--help") {