X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Ftail.c;h=e352ab627b2e86b9e45c6ae59b1b17e4b0dd6ff1;hb=17f8418ea75410c3fbf9c9558f50f22cb8808e3e;hp=eab502beb660c1e3001c1554dc79480444046527;hpb=64938011f3ba06a8f425926397172dc361bce851;p=oweals%2Fbusybox.git 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: )