]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
"tail" now handles obscure POSIX 1003.2-1992 cases better.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Sep 2004 20:53:53 +0000 (20:53 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Sep 2004 20:53:53 +0000 (20:53 +0000)
NEWS

diff --git a/NEWS b/NEWS
index 185897d2211a94b731ab8d33dbee34aaa85343c4..6b2151ce8cbaaa786dba1ae63783d7f7b39b9540 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -98,6 +98,10 @@ GNU coreutils NEWS                                    -*- outline -*-
 
   "tail -f" no longer mishandles pipes and fifos.  With no operands,
   tail now ignores -f if standard input is a pipe, as POSIX requires.
+  When conforming to POSIX 1003.2-1992, tail now handles some obscure
+  cases more correctly, e.g., "tail +cl file" now reads the file "+cl"
+  rather than reporting an error, and "tail - file" no longer reads
+  standard input.
 
   tee now exits when it gets a SIGPIPE signal, as POSIX requires.
   To get tee's old behavior, use the shell command "(trap '' PIPE; tee)".