From 3305c008ed6084f58b59dde5198ae92e3a458e46 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 25 Feb 2013 07:24:44 +0100 Subject: [PATCH] tail: make help text for -n +N syntax more correct Signed-off-by: Denys Vlasenko --- coreutils/tail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ //usage: "\n -s SECONDS Wait SECONDS between reads with -f" //usage: ) //usage: "\n -n N[kbm] Print last N lines" -//usage: "\n -n +N[kbm] Skip N lines and print the rest" +//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"