diff options
Diffstat (limited to 'coreutils/mkdir.c')
-rw-r--r-- | coreutils/mkdir.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index 0d0a90ec3..4c7ebed6a 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c | |||
@@ -26,10 +26,11 @@ | |||
26 | #include <errno.h> | 26 | #include <errno.h> |
27 | #include <sys/param.h> | 27 | #include <sys/param.h> |
28 | 28 | ||
29 | static const char mkdir_usage[] = "Usage: mkdir [OPTION] DIRECTORY...\n" | 29 | static const char mkdir_usage[] = "Usage: mkdir [OPTION] DIRECTORY...\n\n" |
30 | "Create the DIRECTORY(ies), if they do not already exist\n\n" | 30 | "Create the DIRECTORY(ies), if they do not already exist\n\n" |
31 | "-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n" | 31 | "Options:\n" |
32 | "-p\tno error if existing, make parent directories as needed\n"; | 32 | "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n" |
33 | "\t-p\tno error if existing, make parent directories as needed\n"; | ||
33 | 34 | ||
34 | 35 | ||
35 | static int parentFlag = FALSE; | 36 | static int parentFlag = FALSE; |