diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-04-27 06:02:14 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-04-27 06:02:14 +0000 |
commit | f01b805d9142bad42ebd8d0b4f6770bf06fb2cc3 (patch) | |
tree | 3a0adfb6330858de103e96a5b42d3f76418502af /include/usage.h | |
parent | c91ce5709998976d8b6614b3ac6201692d20eb94 (diff) | |
download | busybox-w32-f01b805d9142bad42ebd8d0b4f6770bf06fb2cc3.tar.gz busybox-w32-f01b805d9142bad42ebd8d0b4f6770bf06fb2cc3.tar.bz2 busybox-w32-f01b805d9142bad42ebd8d0b4f6770bf06fb2cc3.zip |
New applet, fold
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index 6848549f7..e98e8b97c 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -627,6 +627,16 @@ | |||
627 | "$ find / -name /etc/passwd\n" \ | 627 | "$ find / -name /etc/passwd\n" \ |
628 | "/etc/passwd\n" | 628 | "/etc/passwd\n" |
629 | 629 | ||
630 | #define fold_trivial_usage \ | ||
631 | "[bsw] [FILE]" | ||
632 | #define fold_full_usage \ | ||
633 | "Wrap input lines in each FILE (standard input by default), writing to\n" \ | ||
634 | "standard output.\n\n" \ | ||
635 | "Options:\n" \ | ||
636 | "\t-b\tcount bytes rather than columns\n" \ | ||
637 | "\t-s\tbreak at spaces\n" \ | ||
638 | "\t-w\tuse WIDTH columns instead of 80\n" | ||
639 | |||
630 | #define free_trivial_usage \ | 640 | #define free_trivial_usage \ |
631 | "" | 641 | "" |
632 | #define free_full_usage \ | 642 | #define free_full_usage \ |