]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
wipefs: change option -v to -V for --version; add it to man page
authorBenno Schulenberg <bensberg@justemail.net>
Wed, 3 Aug 2011 08:23:08 +0000 (10:23 +0200)
committerKarel Zak <kzak@redhat.com>
Mon, 8 Aug 2011 09:58:47 +0000 (11:58 +0200)
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
misc-utils/wipefs.8
misc-utils/wipefs.c

index ebb64bd4fede1c9dcfdd12a6defa697645403762..00a406d2ee83b2648c33551b97d85d502d5a050c 100644 (file)
@@ -7,7 +7,7 @@
 wipefs \- wipe a filesystem signature from a device
 .SH SYNOPSIS
 .B wipefs
-.RB [ \-ahnp ]
+.RB [ \-ahnpV ]
 .RB [ \-o
 .IR offset ]
 .I device
@@ -36,8 +36,10 @@ The \fIoffset\fR argument may be followed by binary (2^N) suffixes KiB, MiB,
 GiB, TiB, PiB and EiB (the "iB" is optional, e.g. "K" has the same meaning as
 "KiB") or decimal (10^N) suffixes KB, MB, GB, PB and EB.
 .IP "\fB\-p, \-\-parsable\fP"
-Print out in parsable instead of printable format. Encode all potentially unsafe
+Print out in parsable instead of printable format.  Encode all potentially unsafe
 characters of a string to the corresponding hex value prefixed by '\\x'.
+.IP "\fB\-V, \-\-version\fP"
+Output version information and exit.
 .SH AUTHOR
 Karel Zak <kzak@redhat.com>.
 .SH AVAILABILITY
index 09c6070ce158034eb59270b8437bb942244f819a..10102aea48e192da436f774bf4923bb442b9ec12 100644 (file)
@@ -309,7 +309,7 @@ usage(FILE *out)
        " -n, --no-act        do everything except the actual write() call\n"
        " -o, --offset <num>  offset to erase, in bytes\n"
        " -p, --parsable      print out in parsable instead of printable format\n"
-       " -v, --version       output version information and exit\n"));
+       " -V, --version       output version information and exit\n"));
 
        fprintf(out, _("\nFor more information see wipefs(8).\n"));
 
@@ -330,7 +330,7 @@ main(int argc, char **argv)
            { "no-act",    0, 0, 'n' },
            { "offset",    1, 0, 'o' },
            { "parsable",  0, 0, 'p' },
-           { "version",   0, 0, 'v' },
+           { "version",   0, 0, 'V' },
            { NULL,        0, 0, 0 }
        };
 
@@ -338,7 +338,7 @@ main(int argc, char **argv)
        bindtextdomain(PACKAGE, LOCALEDIR);
        textdomain(PACKAGE);
 
-       while ((c = getopt_long(argc, argv, "ahno:pv", longopts, NULL)) != -1) {
+       while ((c = getopt_long(argc, argv, "ahno:pV", longopts, NULL)) != -1) {
                switch(c) {
                case 'a':
                        all++;
@@ -356,7 +356,7 @@ main(int argc, char **argv)
                case 'p':
                        mode = WP_MODE_PARSABLE;
                        break;
-               case 'v':
+               case 'V':
                        printf(_("%s from %s\n"), program_invocation_short_name,
                                PACKAGE_STRING);
                        return EXIT_SUCCESS;