aboutsummaryrefslogtreecommitdiff
path: root/coreutils/expand.c
diff options
context:
space:
mode:
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"