diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-11-10 23:13:02 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-11-10 23:13:02 +0000 |
commit | fe675f24f8afae61702b3e2aee9af34dd84a4d5b (patch) | |
tree | 3e448e6550da52d2709e5f52fbae56e9df9462cc /coreutils/mkdir.c | |
parent | 51abdb45dd5418cdf8355e5c314307771f9b8c37 (diff) | |
download | busybox-w32-fe675f24f8afae61702b3e2aee9af34dd84a4d5b.tar.gz busybox-w32-fe675f24f8afae61702b3e2aee9af34dd84a4d5b.tar.bz2 busybox-w32-fe675f24f8afae61702b3e2aee9af34dd84a4d5b.zip |
Updates to usage, and made tar work.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@94 69ca8d6d-28ef-0310-b511-8ec308f3f277
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; |