diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-04-14 15:15:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-04-14 15:15:45 +0200 |
commit | ba9f9c2d2c57f6041c6c01ba7c0e8379a5f5d440 (patch) | |
tree | 2b09bd23498d75f02e7d8bd2d5132e79deb299d7 /coreutils/cut.c | |
parent | 93f1255af28c5fca0e704c6096e25fb3a5c09a67 (diff) | |
download | busybox-w32-ba9f9c2d2c57f6041c6c01ba7c0e8379a5f5d440.tar.gz busybox-w32-ba9f9c2d2c57f6041c6c01ba7c0e8379a5f5d440.tar.bz2 busybox-w32-ba9f9c2d2c57f6041c6c01ba7c0e8379a5f5d440.zip |
*: --help text tweaks
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/cut.c')
-rw-r--r-- | coreutils/cut.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c index 16418ff33..5897d82b6 100644 --- a/coreutils/cut.c +++ b/coreutils/cut.c | |||
@@ -22,12 +22,12 @@ | |||
22 | //usage:#define cut_trivial_usage | 22 | //usage:#define cut_trivial_usage |
23 | //usage: "[OPTIONS] [FILE]..." | 23 | //usage: "[OPTIONS] [FILE]..." |
24 | //usage:#define cut_full_usage "\n\n" | 24 | //usage:#define cut_full_usage "\n\n" |
25 | //usage: "Print selected fields from each input FILE to stdout\n" | 25 | //usage: "Print selected fields from FILEs to stdout\n" |
26 | //usage: "\n -b LIST Output only bytes from LIST" | 26 | //usage: "\n -b LIST Output only bytes from LIST" |
27 | //usage: "\n -c LIST Output only characters from LIST" | 27 | //usage: "\n -c LIST Output only characters from LIST" |
28 | //usage: "\n -d CHAR Use CHAR instead of tab as the field delimiter" | 28 | //usage: "\n -d CHAR Use CHAR instead of tab as field delimiter" |
29 | //usage: "\n -s Output only the lines containing delimiter" | 29 | //usage: "\n -s Output only lines containing delimiter" |
30 | //usage: "\n -f N Print only these fields" | 30 | //usage: "\n -f LIST Print only these fields" |
31 | //usage: "\n -n Ignored" | 31 | //usage: "\n -n Ignored" |
32 | //usage: | 32 | //usage: |
33 | //usage:#define cut_example_usage | 33 | //usage:#define cut_example_usage |