summaryrefslogtreecommitdiff
path: root/NEWS
AgeCommit message (Collapse)Author
2006-07-21mention yesterday's other ls bugfixJim Meyering
2006-07-21Fix another bug: ls --indicator-style=file-type would callJim Meyering
stat for a symlink, even though it wasn't always needed. In some cases, that unnecessary stat would cause ls to fail. * src/ls.c (gobble_file): Don't treat symlinks specially (in requiring a stat syscall). Remove the offending exclusion. * NEWS: Mention the fix. * tests/ls/stat-dtype: New file/test, for the above fix. Also exercises the new df feature, below.
2006-07-17chmod, install, and mkdir now leave setgid and setuid bitsPaul Eggert
of directories alone unless you specify them explicitly. install and mkdir now implement X correctly. install now creates parent directories with mode 755, without changing their owner or group.
2006-07-07* NEWS: Mention that mv can now remove an empty destination directory,Jim Meyering
and give an example. Prompted by a report from Florent Bayle.
2006-07-01With no operand, 'tail -f' now silently ignores the '-f'Paul Eggert
only if standard input is a FIFO or pipe and POSIXLY_CORRECT is set.
2006-07-01seq defaults to a minimal fixed point format that does not losePaul Eggert
information if seq's operands are all fixed point decimal numbers. You no longer need the `-f%.f' in `seq -f%.f 1048575 1024 1050623', for example, since the default format now has the same effect. seq now lets you use %a, %A, %E, %F, and %G formats. seq now uses long double internally rather than double.
2006-06-28Support obsolete usages like "sort +1 -2" even when conforming toPaul Eggert
POSIX 1003.1-2001.
2006-06-26* NEWS: rm no longer fails to remove an empty, unreadable directoryJim Meyering
* src/remove.c (remove_cwd_entries): If we can't open a directory, and the failure is not being ignored, try to remove the directory with rmdir (aka unlinkat-with-AT_REMOVEDIR), in case it's empty. Problem report and test case from Paul Eggert in <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/7425>. * tests/rm/empty-inacc: New test, for the above.
2006-06-25* NEWS: wc accepts a new option --files0-from=FILE, where FILEJim Meyering
contains a list of NUL-separated file names. * src/wc.c: Include "readtokens.h". (usage): Describe the new option, and adjust the `Usage': with this option, no FILE may be specified on the command line. (main): Handle the new option. * tests/misc/wc-files0: New tests, for the above. * tests/misc/wc-files0-from: Likewise. * tests/misc/Makefile.am (TESTS): Add wc-files0.
2006-06-10Mention the AIX-strndup-bug vs. dircolors workaround.Jim Meyering
2006-06-08Ensure that cat works with any of the options, -A -v -e -E -T,Jim Meyering
when applied to files in /proc and /sys, even when the FIONREAD ioctl produces nonsensical results. Before this change, cat would produce no output (or truncated output), for some linux kernels. * src/cat.c (write_pending): New function, factored out of cat. (cat): Also interpret a negative ioctl/FIONREAD count as indicating that there are bytes to read. Some versions of linux-2.6.16 do that. Write any pending output before returning. Reported by Dan Jacobson in <http://bugs.debian.org/370583>. * NEWS: Mention this bug fix. * tests/misc/cat-proc: New file. Test for the above. * tests/misc/Makefile.am (TESTS): Add cat-proc.
2006-06-07The 'expr' command now detects and reports integer overflow.Paul Eggert
2006-06-03`cp --link --no-dereference' now works also on systems where theJim Meyering
link system call cannot create a hard link to a symbolic link.
2006-05-27*** empty log message ***Jim Meyering
2006-05-27chgrp now supports --preserve-root, --no-preserve-rootJim Meyering
2006-05-25Remove mention of --seed.Paul Eggert
2006-05-21*** empty log message ***Jim Meyering
2006-05-16mention cp -p vs. no-/proc fixJim Meyering
2006-05-11Mention that:Jim Meyering
mv -T DIR EMPTY_DIR no longer fails unconditionally
2006-05-11*** empty log message ***Jim Meyering
2006-05-07mention the df fix of 2006-01-24Jim Meyering
2006-05-06*** empty log message ***Jim Meyering
2006-05-06mention the shred-segfault fixJim Meyering
2006-05-06remove stray stat-related lineJim Meyering
2006-05-04mention pwd fixJim Meyering
2006-04-23[New features]: Mention ls's new option, --group-directories-firstJim Meyering
2006-04-12csplit, nl, expr now conform to POSIX better, and arePaul Eggert
more-compatible with traditional Unix, with respect to regular expressions.
2006-03-28deprecate ptx's --copyright (-C) optionJim Meyering
2006-03-26Improvements to dirname/basename handling on platforms likeJim Meyering
cygwin with distinct // and with drive letters.
2006-03-23nohup diagnostics are now more precise, and nohup nowPaul Eggert
redirects stderr to nohup.out if stdout is closed and stderr is a tty.
2006-03-10*** empty log message ***Jim Meyering
2006-03-10mention today's rm -r fix.Jim Meyering
2006-03-08Document dd's new 'directory' and 'nolinks' flags.Paul Eggert
2006-02-27mention new program: base64Jim Meyering
2006-02-20New option for rm: --interactive=once (-I).Jim Meyering
Document it, along with change to rm --interactive.
2006-02-11Bug fix:Jim Meyering
rm -r must remove an empty directory, even if it is inaccessible.
2006-02-06Mention the `cp -RL' bug fix.Jim Meyering
2006-01-24tail -f once again works on a file with the append-onlyJim Meyering
attribute (affects at least Linux ext2, ext3, xfs file systems)
2006-01-21Mention fts-related improvements and bug fixes.Jim Meyering
2006-01-02Document that mkfifo and mknod -m no longer set special bits.Paul Eggert
2005-12-15stat: revert behavior of --format=FMT (-c)Jim Meyering
stat: add new option: --printf=FMT
2005-12-15*** empty log message ***Jim Meyering
2005-12-14sort now reports incompatible options.Paul Eggert
2005-12-10Mention sort's new options.Jim Meyering
2005-12-07Mention dd's new noatime flag.Paul Eggert
2005-11-26df updates for "none", "proc", inaccessible file systems.Paul Eggert
2005-11-22*** empty log message ***Jim Meyering
2005-11-22Rewrite. Now, this module is reentrant on systemsJim Meyering
that provide openat (Solaris), and on systems like Linux+procfs where our openat emulation code is reentrant. This also fixes a few low-probability leaks and eliminates some code that could, in very unusual circumstances, cause rm() (via a callee) to exit.
2005-11-16Improve quality of ln's diagnostics.Paul Eggert
2005-11-15*** empty log message ***Jim Meyering