diff options
author | Pere Orga <gotrunks@gmail.com> | 2011-03-31 14:43:25 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-03-31 14:43:25 +0200 |
commit | 34425389e09353a8dacdd6b23a62553f699c544c (patch) | |
tree | 4eb2e19685536384748e75af827deca885c9cc0a /coreutils/mkdir.c | |
parent | e3d8d077b7d2e51fed03dc20267eadbe38903b2a (diff) | |
download | busybox-w32-34425389e09353a8dacdd6b23a62553f699c544c.tar.gz busybox-w32-34425389e09353a8dacdd6b23a62553f699c544c.tar.bz2 busybox-w32-34425389e09353a8dacdd6b23a62553f699c544c.zip |
move help text from include/usage.src.h to coreutils/*.c
Signed-off-by: Pere Orga <gotrunks@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/mkdir.c')
-rw-r--r-- | coreutils/mkdir.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index 0de0d5c3b..e425bbe5e 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c | |||
@@ -19,6 +19,25 @@ | |||
19 | /* Nov 28, 2006 Yoshinori Sato <ysato@users.sourceforge.jp>: Add SELinux Support. | 19 | /* Nov 28, 2006 Yoshinori Sato <ysato@users.sourceforge.jp>: Add SELinux Support. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | //usage:#define mkdir_trivial_usage | ||
23 | //usage: "[OPTIONS] DIRECTORY..." | ||
24 | //usage:#define mkdir_full_usage "\n\n" | ||
25 | //usage: "Create DIRECTORY\n" | ||
26 | //usage: "\nOptions:" | ||
27 | //usage: "\n -m MODE Mode" | ||
28 | //usage: "\n -p No error if exists; make parent directories as needed" | ||
29 | //usage: IF_SELINUX( | ||
30 | //usage: "\n -Z Set security context" | ||
31 | //usage: ) | ||
32 | //usage: | ||
33 | //usage:#define mkdir_example_usage | ||
34 | //usage: "$ mkdir /tmp/foo\n" | ||
35 | //usage: "$ mkdir /tmp/foo\n" | ||
36 | //usage: "/tmp/foo: File exists\n" | ||
37 | //usage: "$ mkdir /tmp/foo/bar/baz\n" | ||
38 | //usage: "/tmp/foo/bar/baz: No such file or directory\n" | ||
39 | //usage: "$ mkdir -p /tmp/foo/bar/baz\n" | ||
40 | |||
22 | #include "libbb.h" | 41 | #include "libbb.h" |
23 | 42 | ||
24 | /* This is a NOFORK applet. Be very careful! */ | 43 | /* This is a NOFORK applet. Be very careful! */ |