no file operand is given, and standard input is any FIFO.
+2006-09-08 Paul Eggert <eggert@cs.ucla.edu>
+
+ * NEWS: tail now ignores the -f option if POSIXLY_CORRECT is set,
+ no file operand is given, and standard input is any FIFO.
+ This is in response to Open Group XCU ERN 114.
+ * src/tail.c (main): Likewise.
+
2006-09-08 Jim Meyering <jim@meyering.net>
mv and "cp -r" no longer fail when invoked with two arguments
now fails without removing anything. Likewise for any file name with
a final `./' or `../' component.
+ tail now ignores the -f option if POSIXLY_CORRECT is set, no file
+ operand is given, and standard input is any FIFO; formerly it did
+ this only for pipes.
+
** Infrastructure changes
Coreutils now uses gnulib via the gnulib-tool script.
+2006-09-08 Paul Eggert <eggert@cs.ucla.edu>
+
+ * coreutils.texi (tail invocation): Ignore -f when standard input
+ is a FIFO, too.
+
2006-09-02 Paul Eggert <eggert@cs.ucla.edu>
* coreutils.texi (Treating / specially): --preserve-root is
@vindex POSIXLY_CORRECT
If @env{POSIXLY_CORRECT} is set, the @option{-f} option is ignored if
-no @var{file} operand is specified and standard input is a pipe.
+no @var{file} operand is specified and standard input is a FIFO or a pipe.
@item -F
@opindex -F
if (forever && getenv ("POSIXLY_CORRECT"))
{
- int is_a_pipe = isapipe (STDIN_FILENO);
- if (is_a_pipe < 0)
+ struct stat st;
+ int is_a_fifo_or_pipe =
+ (fstat (STDIN_FILENO, &st) != 0 ? -1
+ : S_ISFIFO (st.st_mode) ? 1
+ : HAVE_FIFO_PIPES == 1 ? 0
+ : isapipe (STDIN_FILENO));
+ if (is_a_fifo_or_pipe < 0)
error (EXIT_FAILURE, errno, _("standard input"));
- if (is_a_pipe)
+ if (is_a_fifo_or_pipe)
forever = false;
}
}