From 8cb9b753c51bc92bb066c9bcfcacde685cee7156 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 3 Jun 2000 08:10:37 +0000 Subject: [PATCH] Allow -v as synonym for --verbose, to be consistent with other fileutils. --- src/mkdir.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mkdir.c b/src/mkdir.c index 5964ac4..6389cb0 100644 --- a/src/mkdir.c +++ b/src/mkdir.c @@ -46,7 +46,7 @@ static struct option const longopts[] = { {"mode", required_argument, NULL, 'm'}, {"parents", no_argument, NULL, 'p'}, - {"verbose", no_argument, NULL, 2}, + {"verbose", no_argument, NULL, 'v'}, {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, {NULL, 0, NULL, 0} @@ -66,7 +66,7 @@ Create the DIRECTORY(ies), if they do not already exist.\n\ \n\ -m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - umask\n\ -p, --parents no error if existing, make parent directories as needed\n\ - --verbose print a message for each created directory\n\ + -v, --verbose print a message for each created directory\n\ --help display this help and exit\n\ --version output version information and exit\n\ ")); @@ -94,7 +94,7 @@ main (int argc, char **argv) create_parents = 0; - while ((optc = getopt_long (argc, argv, "pm:", longopts, NULL)) != -1) + while ((optc = getopt_long (argc, argv, "pm:v", longopts, NULL)) != -1) { switch (optc) { @@ -106,7 +106,7 @@ main (int argc, char **argv) case 'm': symbolic_mode = optarg; break; - case 2: /* --verbose */ + case 'v': /* --verbose */ verbose_fmt_string = _("created directory `%s'"); break; case_GETOPT_HELP_CHAR; -- 2.7.4