1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
From cb3ac71d7a48b2f14b9bede07fd67040c4be9fe0 Mon Sep 17 00:00:00 2001
From: Benjamin Mako Hill <mako@atdot.cc>
Date: Sat, 12 Feb 2011 16:58:36 -0500
Subject: fix documentation/manpage
- the -v and -q information was incorrect in that it explained it could
be used before the subcommands (which it cannot)
---
bin/mvs | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/bin/mvs b/bin/mvs
index 5d54edd..403bf33 100755
--- a/bin/mvs
+++ b/bin/mvs
@@ -239,14 +239,14 @@ mvs - A command line Mediawiki client
mkdir wikistuff
cd wikistuff
- mvs [-q|-v] login [-T] [-d <wikihost>] [-l language_code ] [-u <username>] [-p <password> ] [-w <wiki_path>]
+ mvs login [-q|-v] [-T] [-d <wikihost>] [-l language_code ] [-u <username>] [-p <password> ] [-w <wiki_path>]
- mvs [-q|-v] update [<file> ..]
- mvs [-q|-v] up [<file> ..]
+ mvs update [-q|-v] [<file> ..]
+ mvs up [[-q|-v] <file> ..]
- mvs [-q|-v] commit [-M] [-W] -m "commit message" <file>
- mvs [-q|-v] com [-M] [-W] -m "commit message" <file>
- mvs [-q|-v] preview [-M] [-W] [-m "commit message"] <file>
+ mvs commit [-q|-v] [-M] [-W] -m "commit message" <file>
+ mvs com [-q|-v] [-M] [-W] -m "commit message" <file>
+ mvs preview [-q|-v] [-M] [-W] [-m "commit message"] <file>
=head1 DESCRIPTION
--
1.7.2.3
|