aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/tail.c')
-rw-r--r--coreutils/tail.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c
index eab502beb..e352ab627 100644
--- a/coreutils/tail.c
+++ b/coreutils/tail.c
@@ -32,15 +32,14 @@
32//usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n" 32//usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n"
33//usage: "With more than one FILE, precede each with a filename header.\n" 33//usage: "With more than one FILE, precede each with a filename header.\n"
34//usage: "\n -f Print data as file grows" 34//usage: "\n -f Print data as file grows"
35//usage: IF_FEATURE_FANCY_TAIL( 35//usage: "\n -c [+]N[kbm] Print last N bytes"
36//usage: "\n -s SECONDS Wait SECONDS between reads with -f"
37//usage: )
38//usage: "\n -n N[kbm] Print last N lines" 36//usage: "\n -n N[kbm] Print last N lines"
39//usage: "\n -n +N[kbm] Start on Nth line and print the rest" 37//usage: "\n -n +N[kbm] Start on Nth line and print the rest"
40//usage: IF_FEATURE_FANCY_TAIL( 38//usage: IF_FEATURE_FANCY_TAIL(
41//usage: "\n -c [+]N[kbm] Print last N bytes"
42//usage: "\n -q Never print headers" 39//usage: "\n -q Never print headers"
40//usage: "\n -s SECONDS Wait SECONDS between reads with -f"
43//usage: "\n -v Always print headers" 41//usage: "\n -v Always print headers"
42//usage: "\n -F Same as -f, but keep retrying"
44//usage: "\n" 43//usage: "\n"
45//usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)." 44//usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)."
46//usage: ) 45//usage: )