summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-08-10 22:05:47 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-08-10 22:05:47 +0000
commit754ebf7885202cc240107076a0a2b31c8a33b5f2 (patch)
treeb52c23c575eb4c535912650a78f7839ad1f76c25
parentac4b4fe41809afa1841aeb7fb95767c5cc7cfd09 (diff)
downloadcoreutils-754ebf7885202cc240107076a0a2b31c8a33b5f2.tar.xz
Document "sort -o -" and "tee -" POSIX-conformance fixes.
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 3b4e4729f..31f459bd7 100644
--- a/NEWS
+++ b/NEWS
@@ -42,6 +42,9 @@ GNU coreutils NEWS -*- outline -*-
rm no longer requires read access to the current directory.
+ "sort -o -" now writes to a file named "-" instead of to standard
+ output; POSIX requires this.
+
tail -f no longer mishandles pipes and fifos. With no operands,
tail now ignores -f if standard input is a pipe, as POSIX requires.
@@ -70,6 +73,7 @@ GNU coreutils NEWS -*- outline -*-
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)".
+ Also, "tee -" now writes to standard output instead of to a file named "-".
ls no longer segfaults on systems for which SIZE_MAX != (size_t) -1