]> git.refcnt.org Git - colorize.git/commitdiff
Convert short version option to uppercase
authorSteven Schubiger <stsc@refcnt.org>
Mon, 2 Mar 2015 14:26:05 +0000 (15:26 +0100)
committerSteven Schubiger <stsc@refcnt.org>
Mon, 2 Mar 2015 14:26:05 +0000 (15:26 +0100)
colorize.1
colorize.c

index c6f0bdb4551485dde4bbe486628ee5560ae741f5..e6bab8b68b5833def574c5a99dcc1c2648065947 100644 (file)
@@ -1,4 +1,4 @@
-.TH COLORIZE 1 "2014-01-02" "colorize v0.55" "User Commands"
+.TH COLORIZE 1 "2015-03-02" "colorize v0.55" "User Commands"
 .SH NAME
 colorize \- colorize text with escape sequences
 .SH SYNOPSIS
@@ -8,7 +8,7 @@ colorize \- colorize text with escape sequences
 .PP
 \fBcolorize\fR \-\-clean[\-all] [\fIfile\fR]
 .PP
-\fBcolorize\fR \-hv
+\fBcolorize\fR \-hV
 .SH DESCRIPTION
 Colorizes text read from standard input stream or file by using ANSI
 escape sequences (and also vice versa, i.e. cleaning text from sequences)
@@ -40,7 +40,7 @@ text color to be excluded when selecting a random foreground color
 .BR \-h ", " \-\-help
 show help screen and exit
 .TP
-.BR \-v ", " \-\-version
+.BR \-V ", " \-\-version
 display version data and exit
 .SH NOTES
 The list of color escape sequence codes being emitted and omitted is
index 230d4a4237d180bdf9e4e433984f8aba5b62bb13..9bd5c78d6bb14f7826bcaf141b30eb1f134b42e8 100644 (file)
@@ -286,7 +286,7 @@ main (int argc, char **argv)
     log = open_file (DEBUG_FILE, "w");
 #endif
 
-    while ((opt = getopt_long (argc, argv, "hv", long_opts, NULL)) != -1)
+    while ((opt = getopt_long (argc, argv, "hV", long_opts, NULL)) != -1)
       {
         PARSE_OPT:
         switch (opt)
@@ -330,7 +330,7 @@ main (int argc, char **argv)
               break;
             case 'h':
               SET_OPT_TYPE (OPT_HELP);
-            case 'v':
+            case 'V':
               SET_OPT_TYPE (OPT_VERSION);
             case '?':
               print_hint ();
@@ -411,7 +411,7 @@ print_help (void)
     printf ("\t\t    --clean-all\n");
     printf ("\t\t    --exclude-random\n");
     printf ("\t\t-h, --help\n");
-    printf ("\t\t-v, --version\n\n");
+    printf ("\t\t-V, --version\n\n");
 }
 
 static void