aboutsummaryrefslogtreecommitdiff
path: root/coreutils/cut.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/cut.c')
-rw-r--r--coreutils/cut.c8
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