aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-03-26 14:38:03 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-03-26 14:38:03 +0000
commit4e1361a4819ad0fcf76e161bfdcdc8bc29c872ff (patch)
tree6998bfcdda0e61e5eb33739e87a51ef0798d61ea
parentb813eaff2322df4829183c1bca2c6eda037825f1 (diff)
downloadbusybox-w32-4e1361a4819ad0fcf76e161bfdcdc8bc29c872ff.tar.gz
busybox-w32-4e1361a4819ad0fcf76e161bfdcdc8bc29c872ff.tar.bz2
busybox-w32-4e1361a4819ad0fcf76e161bfdcdc8bc29c872ff.zip
- add usage for split
-rw-r--r--include/usage.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h
index 4843f5f67..d948c6a03 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -2956,7 +2956,12 @@
2956 "[OPTION] [INPUT [PREFIX]]" 2956 "[OPTION] [INPUT [PREFIX]]"
2957#define split_full_usage \ 2957#define split_full_usage \
2958 "Options:" \ 2958 "Options:" \
2959 "\n -blah XXX: Fixme: usage.h" 2959 "\n -b n[k|m] Split by bytes" \
2960 "\n -l n Split by lines" \
2961 "\n -a n Use n letters as suffix"
2962#define split_example_usage \
2963 "$ split TODO foo\n" \
2964 "$ cat TODO | split -a 2 -l 2 TODO_\n"
2960 2965
2961#define start_stop_daemon_trivial_usage \ 2966#define start_stop_daemon_trivial_usage \
2962 "[OPTIONS] [--start|--stop] ... [-- arguments...]" 2967 "[OPTIONS] [--start|--stop] ... [-- arguments...]"