aboutsummaryrefslogtreecommitdiffstats
path: root/src/mkdir.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-11-23 20:10:25 +0000
committerJim Meyering <jim@meyering.net>2001-11-23 20:10:25 +0000
commitb78de3e724522e63bc82ef2f2214d329e69ea545 (patch)
tree9a0759d9c581522e4a3bd10fc46277db4465f2f6 /src/mkdir.c
parent*** empty log message *** (diff)
downloadcoreutils-b78de3e724522e63bc82ef2f2214d329e69ea545.tar.gz
coreutils-b78de3e724522e63bc82ef2f2214d329e69ea545.zip
Split usage strings so that --help and --version
descriptions are alone in their own string.
Diffstat (limited to 'src/mkdir.c')
-rw-r--r--src/mkdir.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mkdir.c b/src/mkdir.c
index 549bdadde..57a11423e 100644
--- a/src/mkdir.c
+++ b/src/mkdir.c
@@ -59,15 +59,17 @@ usage (int status)
else
{
printf (_("Usage: %s [OPTION] DIRECTORY...\n"), program_name);
- printf (_("\
+ fputs (_("\
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\
-v, --verbose print a message for each created directory\n\
+"), stdout);
+ fputs (_("\
--help display this help and exit\n\
--version output version information and exit\n\
-"));
+"), stdout);
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
}
exit (status);