aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-02-25 07:24:44 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-02-25 07:24:44 +0100
commit3305c008ed6084f58b59dde5198ae92e3a458e46 (patch)
treeb92af6b6da803fcf6e61ec0f0833b8603c8860c2
parent40c6da433f0900d451e46da86422d89f3878d40c (diff)
downloadbusybox-w32-3305c008ed6084f58b59dde5198ae92e3a458e46.tar.gz
busybox-w32-3305c008ed6084f58b59dde5198ae92e3a458e46.tar.bz2
busybox-w32-3305c008ed6084f58b59dde5198ae92e3a458e46.zip
tail: make help text for -n +N syntax more correct
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--coreutils/tail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c
index 87251da83..19fd8f695 100644
--- a/coreutils/tail.c
+++ b/coreutils/tail.c
@@ -37,7 +37,7 @@
37//usage: "\n -s SECONDS Wait SECONDS between reads with -f" 37//usage: "\n -s SECONDS Wait SECONDS between reads with -f"
38//usage: ) 38//usage: )
39//usage: "\n -n N[kbm] Print last N lines" 39//usage: "\n -n N[kbm] Print last N lines"
40//usage: "\n -n +N[kbm] Skip N lines and print the rest" 40//usage: "\n -n +N[kbm] Start on Nth line and print the rest"
41//usage: IF_FEATURE_FANCY_TAIL( 41//usage: IF_FEATURE_FANCY_TAIL(
42//usage: "\n -c [+]N[kbm] Print last N bytes" 42//usage: "\n -c [+]N[kbm] Print last N bytes"
43//usage: "\n -q Never print headers" 43//usage: "\n -q Never print headers"