aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
authorCristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com>2014-01-09 20:00:58 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2014-01-10 16:26:15 +0100
commit1bdbf264540892a20d07cd81d2918dd5519f4bb3 (patch)
treea986d137091e3c735a6cacb7c8328f1c8ba959a4 /coreutils/tail.c
parent79df481dc4723cc018731508bc08ce42b3b2eb17 (diff)
downloadbusybox-1bdbf264540892a20d07cd81d2918dd5519f4bb3.tar.gz
tail: adjust help/usage texts
Signed-off-by: Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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 @@
//usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n"
//usage: "With more than one FILE, precede each with a filename header.\n"
//usage: "\n -f Print data as file grows"
-//usage: IF_FEATURE_FANCY_TAIL(
-//usage: "\n -s SECONDS Wait SECONDS between reads with -f"
-//usage: )
+//usage: "\n -c [+]N[kbm] Print last N bytes"
//usage: "\n -n N[kbm] Print last N lines"
//usage: "\n -n +N[kbm] Start on Nth line and print the rest"
//usage: IF_FEATURE_FANCY_TAIL(
-//usage: "\n -c [+]N[kbm] Print last N bytes"
//usage: "\n -q Never print headers"
+//usage: "\n -s SECONDS Wait SECONDS between reads with -f"
//usage: "\n -v Always print headers"
+//usage: "\n -F Same as -f, but keep retrying"
//usage: "\n"
//usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)."
//usage: )