diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-01-23 18:19:02 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-01-23 18:19:02 +0000 |
commit | 5509af7073ffff75d86ff8c67a2075169a859efd (patch) | |
tree | 2728cbb296484026cb657f92f78e1bb0806ba6f4 /coreutils/mkdir.c | |
parent | 9bc7e89fc1eb493c06494ad86781ab49fc28c509 (diff) | |
download | busybox-w32-5509af7073ffff75d86ff8c67a2075169a859efd.tar.gz busybox-w32-5509af7073ffff75d86ff8c67a2075169a859efd.tar.bz2 busybox-w32-5509af7073ffff75d86ff8c67a2075169a859efd.zip |
* added (and documented) "-n" option for head -
contributed Friedrich Vedder <fwv@myrtle.lahn.de>
* Cleanup for a number of usage messages -- also
contributed Friedrich Vedder <fwv@myrtle.lahn.de>
-Erik
Diffstat (limited to 'coreutils/mkdir.c')
-rw-r--r-- | coreutils/mkdir.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index dc245a18e..017ef9b08 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c | |||
@@ -26,7 +26,8 @@ | |||
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\n" | 29 | static const char mkdir_usage[] = |
30 | "mkdir [OPTION] DIRECTORY...\n\n" | ||
30 | "Create the DIRECTORY(ies), if they do not already exist\n\n" | 31 | "Create the DIRECTORY(ies), if they do not already exist\n\n" |
31 | "Options:\n" | 32 | "Options:\n" |
32 | "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n" | 33 | "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n" |