diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-11-10 23:13:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-11-10 23:13:02 +0000 |
commit | d73dc5b07390fb90e7f605871c993a28eedf1d46 (patch) | |
tree | 3e448e6550da52d2709e5f52fbae56e9df9462cc /coreutils/mkdir.c | |
parent | 84d85680712573c7a8bd7d0491c3f944dc08ad10 (diff) | |
download | busybox-w32-d73dc5b07390fb90e7f605871c993a28eedf1d46.tar.gz busybox-w32-d73dc5b07390fb90e7f605871c993a28eedf1d46.tar.bz2 busybox-w32-d73dc5b07390fb90e7f605871c993a28eedf1d46.zip |
Updates to usage, and made tar work.
-Erik
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; |