From: Jim Meyering Date: Sun, 26 Apr 1998 19:58:43 +0000 (+0000) Subject: Remove usage-like comments near beginning of file. X-Git-Tag: TEXTUTILS-1_22f~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dd872d963dc4683dddea722981000fa65c9d9d9;p=thirdparty%2Fcoreutils.git Remove usage-like comments near beginning of file. --- diff --git a/src/tail.c b/src/tail.c index 6991badf6a..643006e378 100644 --- a/src/tail.c +++ b/src/tail.c @@ -19,26 +19,6 @@ a fixed size buffer and therefore can only deliver a limited number of lines. - Options: - -b Tail by N 512-byte blocks. - -c, --bytes=N[bkm] Tail by N bytes - [or 512-byte blocks, kilobytes, or megabytes]. - -f, --follow Loop forever trying to read more characters at the - end of the file, on the assumption that the file - is growing. Ignored if reading from a pipe. - -n, --lines=N Tail by N lines. - -q, --quiet, --silent Never print filename headers. - -v, --verbose Always print filename headers. - - If a number (N) starts with a `+', begin printing with the Nth item - from the start of each file, instead of from the end. - - Reads from standard input if no files are given or when a filename of - ``-'' is encountered. - By default, filename headers are printed only more than one file - is given. - By default, prints the last 10 lines (tail -n 10). - Original version by Paul Rubin . Extensions by David MacKenzie . tail -f for multiple files by Ian Lance Taylor . */