aboutsummaryrefslogtreecommitdiff
path: root/coreutils/expand.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-01-21 02:49:58 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2017-01-21 02:49:58 +0100
commitbbc7bee9664b582c8237c4b879bba1bdee4d62a6 (patch)
tree150b33e048693b206af92b258a76d859bcf2a1d8 /coreutils/expand.c
parentf6e20724d4aac3655e921ff6072e60bbe182b273 (diff)
downloadbusybox-w32-bbc7bee9664b582c8237c4b879bba1bdee4d62a6.tar.gz
busybox-w32-bbc7bee9664b582c8237c4b879bba1bdee4d62a6.tar.bz2
busybox-w32-bbc7bee9664b582c8237c4b879bba1bdee4d62a6.zip
make --help texts more uniform
function old new delta packed_usage 31062 31035 -27 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/expand.c')
-rw-r--r--coreutils/expand.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/expand.c b/coreutils/expand.c
index 29affc932..63b682330 100644
--- a/coreutils/expand.c
+++ b/coreutils/expand.c
@@ -8,13 +8,13 @@
8 * David MacKenzie <djm@gnu.ai.mit.edu> 8 * David MacKenzie <djm@gnu.ai.mit.edu>
9 * 9 *
10 * Options for expand: 10 * Options for expand:
11 * -t num --tabs=NUM Convert tabs to num spaces (default 8 spaces). 11 * -t num --tabs NUM Convert tabs to num spaces (default 8 spaces).
12 * -i --initial Only convert initial tabs on each line to spaces. 12 * -i --initial Only convert initial tabs on each line to spaces.
13 * 13 *
14 * Options for unexpand: 14 * Options for unexpand:
15 * -a --all Convert all blanks, instead of just initial blanks. 15 * -a --all Convert all blanks, instead of just initial blanks.
16 * -f --first-only Convert only leading sequences of blanks (default). 16 * -f --first-only Convert only leading sequences of blanks (default).
17 * -t num --tabs=NUM Have tabs num characters apart instead of 8. 17 * -t num --tabs NUM Have tabs num characters apart instead of 8.
18 * 18 *
19 * Busybox version (C) 2007 by Tito Ragusa <farmatito@tiscali.it> 19 * Busybox version (C) 2007 by Tito Ragusa <farmatito@tiscali.it>
20 * 20 *
@@ -54,7 +54,7 @@
54//usage: "Convert tabs to spaces, writing to stdout\n" 54//usage: "Convert tabs to spaces, writing to stdout\n"
55//usage: IF_FEATURE_EXPAND_LONG_OPTIONS( 55//usage: IF_FEATURE_EXPAND_LONG_OPTIONS(
56//usage: "\n -i,--initial Don't convert tabs after non blanks" 56//usage: "\n -i,--initial Don't convert tabs after non blanks"
57//usage: "\n -t,--tabs=N Tabstops every N chars" 57//usage: "\n -t,--tabs N Tabstops every N chars"
58//usage: ) 58//usage: )
59//usage: IF_NOT_FEATURE_EXPAND_LONG_OPTIONS( 59//usage: IF_NOT_FEATURE_EXPAND_LONG_OPTIONS(
60//usage: "\n -i Don't convert tabs after non blanks" 60//usage: "\n -i Don't convert tabs after non blanks"
@@ -68,7 +68,7 @@
68//usage: IF_FEATURE_UNEXPAND_LONG_OPTIONS( 68//usage: IF_FEATURE_UNEXPAND_LONG_OPTIONS(
69//usage: "\n -a,--all Convert all blanks" 69//usage: "\n -a,--all Convert all blanks"
70//usage: "\n -f,--first-only Convert only leading blanks" 70//usage: "\n -f,--first-only Convert only leading blanks"
71//usage: "\n -t,--tabs=N Tabstops every N chars" 71//usage: "\n -t,--tabs N Tabstops every N chars"
72//usage: ) 72//usage: )
73//usage: IF_NOT_FEATURE_UNEXPAND_LONG_OPTIONS( 73//usage: IF_NOT_FEATURE_UNEXPAND_LONG_OPTIONS(
74//usage: "\n -a Convert all blanks" 74//usage: "\n -a Convert all blanks"