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/split.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/split.c')
-rw-r--r-- | coreutils/split.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/coreutils/split.c b/coreutils/split.c index 79316ed74..f0077077e 100644 --- a/coreutils/split.c +++ b/coreutils/split.c | |||
@@ -9,6 +9,19 @@ | |||
9 | * SUSv3 requirements: | 9 | * SUSv3 requirements: |
10 | * http://www.opengroup.org/onlinepubs/009695399/utilities/split.html | 10 | * http://www.opengroup.org/onlinepubs/009695399/utilities/split.html |
11 | */ | 11 | */ |
12 | |||
13 | //usage:#define split_trivial_usage | ||
14 | //usage: "[OPTIONS] [INPUT [PREFIX]]" | ||
15 | //usage:#define split_full_usage "\n\n" | ||
16 | //usage: "Options:" | ||
17 | //usage: "\n -b N[k|m] Split by N (kilo|mega)bytes" | ||
18 | //usage: "\n -l N Split by N lines" | ||
19 | //usage: "\n -a N Use N letters as suffix" | ||
20 | //usage: | ||
21 | //usage:#define split_example_usage | ||
22 | //usage: "$ split TODO foo\n" | ||
23 | //usage: "$ cat TODO | split -a 2 -l 2 TODO_\n" | ||
24 | |||
12 | #include "libbb.h" | 25 | #include "libbb.h" |
13 | 26 | ||
14 | static const struct suffix_mult split_suffices[] = { | 27 | static const struct suffix_mult split_suffices[] = { |