summaryrefslogtreecommitdiff
path: root/src/dirname.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-10-17 03:57:04 +0000
committerJim Meyering <jim@meyering.net>1993-10-17 03:57:04 +0000
commitfa7a1e19e2b4fcec1f67ebd75f6f12ae65eef8c8 (patch)
treeffc67e10bcf805a9ee5b8243a5103f5bdb4fb90a /src/dirname.c
parent6e1a4cca6862fa1fb40b4c38b73fa30ebb61344b (diff)
downloadcoreutils-fa7a1e19e2b4fcec1f67ebd75f6f12ae65eef8c8.tar.xz
merge with 1.8.1g
Diffstat (limited to 'src/dirname.c')
-rw-r--r--src/dirname.c28
1 files changed, 22 insertions, 6 deletions
diff --git a/src/dirname.c b/src/dirname.c
index b6b46d738..0aebb9793 100644
--- a/src/dirname.c
+++ b/src/dirname.c
@@ -54,10 +54,26 @@ static struct option const long_options[] =
};
static void
-usage ()
+usage (status)
+ int status;
{
- fprintf (stderr, "Usage: %s [{--help,--version}] path\n", program_name);
- exit (1);
+ fprintf (status == 0 ? stdout : stderr, "\
+Usage: %s [OPTION]... PATH\n\
+",
+ program_name);
+
+ if (status != 0)
+ fprintf (stderr, "\nTry `%s --help' for more information.\n",
+ program_name);
+ else
+
+ printf ("\
+\n\
+ --help display this help and exit\n\
+ --version output version information and exit\n\
+");
+
+ exit (status);
}
void
@@ -79,7 +95,7 @@ main (argc, argv)
break;
default:
- usage ();
+ usage (1);
}
}
@@ -90,10 +106,10 @@ main (argc, argv)
}
if (show_help)
- usage ();
+ usage (0);
if (argc - optind != 1)
- usage ();
+ usage (1);
path = argv[optind];
strip_trailing_slashes (path);