diff options
author | Jim Meyering <jim@meyering.net> | 2001-01-07 16:13:27 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-01-07 16:13:27 +0000 |
commit | 7709a027411b5cba9682121d3a4cb87adb32d23d (patch) | |
tree | b8bff25ffe3dc6067b4a0a184d71a4114261437e /src | |
parent | aaf9e9a8202a0ec3da80d79cfde2fd1327839678 (diff) | |
download | coreutils-7709a027411b5cba9682121d3a4cb87adb32d23d.tar.xz |
Split a string that was longer than 2048 bytes.
Diffstat (limited to 'src')
-rw-r--r-- | src/tail.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tail.c b/src/tail.c index 1ab9a8f3a..f2433ab3c 100644 --- a/src/tail.c +++ b/src/tail.c @@ -1,5 +1,5 @@ /* tail -- output the last part of file(s) - Copyright (C) 1989, 90, 91, 1995-2000 Free Software Foundation, Inc. + Copyright (C) 1989, 90, 91, 1995-2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -263,6 +263,8 @@ With no FILE, or when FILE is -, read standard input.\n\ --help display this help and exit\n\ --version output version information and exit\n\ \n\ +")); + printf (_("\ If the first character of N (the number of bytes or lines) is a `+',\n\ print beginning with the Nth item from the start of each file, otherwise,\n\ print the last N items in the file. N may have a multiplier suffix:\n\ |