summaryrefslogtreecommitdiff
path: root/include/usage.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-08-13 14:10:24 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-08-13 14:10:24 +0000
commit3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e (patch)
tree038567c7d5d0a3c9bfe40eeb534ffc9559423b9d /include/usage.h
parent08294dbf5bc6fb1ea0b185488675d91169e231ce (diff)
downloadbusybox-w32-3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e.tar.gz
busybox-w32-3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e.tar.bz2
busybox-w32-3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e.zip
expand, unexpand: new applets from Tito <farmatito@tiscali.it>
Diffstat (limited to 'include/usage.h')
-rw-r--r--include/usage.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h
index f5025b70a..d01e3e4f3 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -844,6 +844,16 @@
844 " -i iface Use interface ifname instead of the default \"eth0\"\n" \ 844 " -i iface Use interface ifname instead of the default \"eth0\"\n" \
845 " -p pass Append the four or six byte password PW to the packet" 845 " -p pass Append the four or six byte password PW to the packet"
846 846
847#define expand_trivial_usage \
848 "[-i] [-t NUM] [FILE|-]"
849#define expand_full_usage \
850 "Convert tabs to spaces, writing to standard output." \
851 "\n\nOptions:" \
852 "\n -i" USE_FEATURE_EXPAND_LONG_OPTIONS(",--initial") \
853 " Do not convert tabs after non blanks" \
854 "\n -t" USE_FEATURE_EXPAND_LONG_OPTIONS(",--tabs=N") \
855 " Tabstops every N chars"
856
847#define expr_trivial_usage \ 857#define expr_trivial_usage \
848 "EXPRESSION" 858 "EXPRESSION"
849#define expr_full_usage \ 859#define expr_full_usage \
@@ -3707,6 +3717,18 @@ USE_FEATURE_RUN_PARTS_FANCY("\n -l Prints names of all matching files even when
3707 " -c Extract to stdout\n" \ 3717 " -c Extract to stdout\n" \
3708 " -f Force overwrite an existing file" 3718 " -f Force overwrite an existing file"
3709 3719
3720#define unexpand_trivial_usage \
3721 "[-f][-a][-t NUM] [FILE|-]"
3722#define unexpand_full_usage \
3723 "Convert spaces to tabs, writing to standard output." \
3724 "\n\nOptions:" \
3725 "\n -a" USE_FEATURE_UNEXPAND_LONG_OPTIONS(",--all") \
3726 " Convert all blanks" \
3727 "\n -f" USE_FEATURE_UNEXPAND_LONG_OPTIONS(",--first-only") \
3728 " Convert only leading sequences of blanks" \
3729 "\n -t" USE_FEATURE_UNEXPAND_LONG_OPTIONS(",--tabs=N") \
3730 " Tabstops every N chars"
3731
3710#define uniq_trivial_usage \ 3732#define uniq_trivial_usage \
3711 "[-fscdu]... [INPUT [OUTPUT]]" 3733 "[-fscdu]... [INPUT [OUTPUT]]"
3712#define uniq_full_usage \ 3734#define uniq_full_usage \