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-4e1361a4819ad0fcf76e161bfdcdc8bc29c872ff.tar.gz
- 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 @@
"[OPTION] [INPUT [PREFIX]]"
#define split_full_usage \
"Options:" \
- "\n -blah XXX: Fixme: usage.h"
+ "\n -b n[k|m] Split by bytes" \
+ "\n -l n Split by lines" \
+ "\n -a n Use n letters as suffix"
+#define split_example_usage \
+ "$ split TODO foo\n" \
+ "$ cat TODO | split -a 2 -l 2 TODO_\n"
#define start_stop_daemon_trivial_usage \
"[OPTIONS] [--start|--stop] ... [-- arguments...]"