aboutsummaryrefslogtreecommitdiff
path: root/coreutils/mkdir.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-10 23:13:02 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-10 23:13:02 +0000
commitfe675f24f8afae61702b3e2aee9af34dd84a4d5b (patch)
tree3e448e6550da52d2709e5f52fbae56e9df9462cc /coreutils/mkdir.c
parent51abdb45dd5418cdf8355e5c314307771f9b8c37 (diff)
downloadbusybox-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.c7
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
29static const char mkdir_usage[] = "Usage: mkdir [OPTION] DIRECTORY...\n" 29static 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
35static int parentFlag = FALSE; 36static int parentFlag = FALSE;