]> git.refcnt.org Git - colorize.git/commitdiff
Add config short option -c
authorSteven Schubiger <stsc@refcnt.org>
Sun, 1 Sep 2019 13:51:59 +0000 (15:51 +0200)
committerSteven Schubiger <stsc@refcnt.org>
Sun, 1 Sep 2019 13:51:59 +0000 (15:51 +0200)
colorize.1
colorize.c
t/conf/param.t

index 45a3ef0895206b23314cfff796159c6ad220e719..02ffe2ead8fbf50de5327835d77d0e42177b3a87 100644 (file)
@@ -1,4 +1,4 @@
-.TH COLORIZE 1 "2019-08-27" "colorize v0.64" "User Commands"
+.TH COLORIZE 1 "2019-09-01" "colorize v0.64" "User Commands"
 .SH NAME
 colorize \- colorize text on terminal with ANSI escape sequences
 .SH SYNOPSIS
@@ -40,7 +40,7 @@ clean text from color escape sequences emitted by colorize
 .BR \-\-clean\-all
 clean text from all valid color escape sequences
 .TP
-.BR \-\-config=\fIPATH\fR
+.BR \-c ", " \-\-config=\fIPATH\fR
 alternate configuration file location
 .TP
 .BR \-\-exclude\-random=\fICOLOR\fR
index bf7e3d6f1038bb1b42fc46bc2b91bf79c2f21e8e..147e684a3c30aef2c3c9ca3d19975837116bc2ce 100644 (file)
@@ -488,6 +488,10 @@ print_tstamp (FILE *log)
 }
 #endif
 
+#define DUP_CONFIG()               \
+    *conf_file = xstrdup (optarg); \
+    break;
+
 #define PRINT_HELP_EXIT() \
     print_help ();        \
     exit (EXIT_SUCCESS);
@@ -502,7 +506,7 @@ static void
 process_opts (int argc, char **argv, char **conf_file)
 {
     int opt;
-    while ((opt = getopt_long (argc, argv, "hV", long_opts, NULL)) != -1)
+    while ((opt = getopt_long (argc, argv, "c:hV", long_opts, NULL)) != -1)
       {
         switch (opt)
           {
@@ -520,8 +524,7 @@ process_opts (int argc, char **argv, char **conf_file)
                     clean_all = true;
                     break;
                   case OPT_CONFIG:
-                    *conf_file = xstrdup (optarg);
-                    break;
+                    DUP_CONFIG ();
                   case OPT_EXCLUDE_RANDOM:
                     opts_set |= OPT_EXCLUDE_RANDOM_SET;
                     opts_arg.exclude_random = xstrdup (optarg);
@@ -537,6 +540,8 @@ process_opts (int argc, char **argv, char **conf_file)
                     ABORT_TRACE ();
                 }
               break;
+            case 'c':
+              DUP_CONFIG ();
             case 'h':
               PRINT_HELP_EXIT ();
             case 'V':
@@ -799,7 +804,7 @@ print_help (void)
     };
     const struct opt_data opts_data[] = {
         { "attr",           NULL, "=ATTR1,ATTR2,..." },
-        { "config",         NULL, "=PATH"            },
+        { "config",         "c",  "=PATH"            },
         { "exclude-random", NULL, "=COLOR"           },
         { "help",           "h",  NULL               },
         { "version",        "V",  NULL               },
@@ -839,9 +844,12 @@ print_help (void)
         if (opt_data)
           {
             if (opt_data->short_opt)
-              printf ("\t\t-%s, --%s\n", opt_data->short_opt, opt->name);
+              printf ("\t\t-%s, --%s", opt_data->short_opt, opt->name);
             else
-              printf ("\t\t    --%s%s\n", opt->name, opt_data->arg);
+              printf ("\t\t    --%s", opt->name);
+            if (opt_data->arg)
+              printf ("%s", opt_data->arg);
+            printf ("\n");
           }
         else
           printf ("\t\t    --%s\n", opt->name);
index 3fe5436d23513d44e0047e49fdeba861da76e519..520df2be5fb71991bb2f11dac1b645716772be73 100755 (executable)
@@ -8,7 +8,7 @@ use Colorize::Common qw(:defaults $write_to_tmpfile);
 use File::Temp qw(tmpnam);
 use Test::More;
 
-my $tests = 1;
+my $tests = 2;
 
 my $conf = <<'EOT';
 attr=bold
@@ -16,6 +16,14 @@ color=blue
 omit-color-empty=yes
 EOT
 
+my $expected = <<"EOT";
+\e[1;34mfoo\e[0m
+
+\e[1;34mbar\e[0m
+
+\e[1;34mbaz\e[0m
+EOT
+
 plan tests => $tests;
 
 SKIP: {
@@ -35,13 +43,9 @@ EOT
     print {$fh} $conf;
     close($fh);
 
-    is(qx($program --config=$conf_file $infile), <<"EOT", 'config param');
-\e[1;34mfoo\e[0m
-
-\e[1;34mbar\e[0m
+    is(qx($program -c $conf_file $infile),       $expected, 'short option');
+    is(qx($program --config=$conf_file $infile), $expected, 'long option');
 
-\e[1;34mbaz\e[0m
-EOT
     unlink $program;
     unlink $conf_file;
 }