1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-19 18:26:32 +02:00
Files
coreutils/TODO

80 lines
2.8 KiB
Plaintext
Raw Normal View History

2002-07-02 14:56:32 +00:00
restore djgpp, eventually
2002-08-20 10:19:18 +00:00
merge TODO lists
add unit tests for lib/*.c
2003-03-28 09:32:21 +00:00
rewrite lib/ftw.c not to use explicit recursion, and then use nftw in
chown, chgrp, chmod, du
2002-10-01 11:43:19 +00:00
strip: add an option to specify the program used to strip binaries.
suggestion from Karl Berry
2002-12-06 14:23:44 +00:00
2002-12-06 15:38:26 +00:00
doc/coreutils.texi:
Address this comment: FIXME: mv's behavior in this case is system-dependent
2002-12-11 10:12:41 +00:00
Better still: fix the code so it's *not* system-dependent.
2002-12-15 08:40:42 +00:00
implement --target-directory=DIR for install (per texinfo documentation)
2003-03-02 10:06:00 +00:00
ls: add --format=FORMAT option that controls how each line is printed.
2003-03-04 21:53:04 +00:00
cp --no-preserve=X should not attempt to preserve attribute X
reported by Andreas Schwab
2003-03-10 18:26:16 +00:00
copy.c: Address the FIXME-maybe comment in copy_internal.
2003-03-10 18:27:27 +00:00
And once that's done, add an exclusion so that `cp --link'
no longer incurs the overhead of saving src. dev/ino and dest. filename
in the hash table.
2003-03-11 17:08:50 +00:00
2003-03-11 22:54:36 +00:00
See if we can be consistent about where --verbose sends its output:
These all send --verbose output to stdout:
head, tail, rm, cp, mv, ln, chmod, chown, chgrp, install, ln
These send it to stderr:
shred mkdir split
readlink is different
2003-03-21 15:26:21 +00:00
2003-03-27 10:55:18 +00:00
Write an autoconf test to work around build failure in HPUX's 64-bit mode.
See notes in README -- and remove them once there's a work-around.
Integrate use of sendfile, suggested here:
http://mail.gnu.org/archive/html/bug-fileutils/2003-03/msg00030.html
2003-04-08 10:14:19 +00:00
I don't plan to do that, since a few tests demonstrate no significant benefit.
2003-03-28 09:30:46 +00:00
Should printf '\0123' print "\n3"?
per report from TAKAI Kousuke on Mar 27
http://mail.gnu.org/archive/html/bug-coreutils/2003-03/index.html
printf: consider adapting builtins/printf.def from bash
2003-03-28 09:38:54 +00:00
2003-03-28 09:44:17 +00:00
df: add `--total' option, suggested here http://bugs.debian.org/186007
2003-03-28 10:28:52 +00:00
2003-03-28 12:29:57 +00:00
seq: give better diagnostics for invalid formats:
e.g. no or too many % directives
seq: consider allowing format string to contain no %-directives
2003-03-30 14:04:19 +00:00
dd: consider adding an option to suppress `bytes/block read/written'
output to stderr. Suggested here:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=165045
2003-03-31 10:59:40 +00:00
m4: rename all macros that start with AC_ to start with another prefix
2003-04-02 18:42:12 +00:00
2003-04-08 10:14:19 +00:00
resolve RH report on cp -a forwarded by Tim Waugh
Martin Michlmayr's patch to provide ls with `--sort directory' option
2003-04-11 09:11:18 +00:00
Remove uses of PROTOTYPES
2003-05-13 12:42:16 +00:00
tail: don't use xlseek; it *exits*.
Instead, maybe use a macro and return nonzero.
2003-06-03 06:53:45 +00:00
add mktemp? Suggested by Nelson Beebe
2003-06-05 16:28:53 +00:00
Now that AC_FUNC_LSTAT and AC_FUNC_STAT are in autoconf,
remove m4/stat.m4 and m4/lstat.m4.
2003-06-18 09:24:50 +00:00
df: alignment problem of `Used' heading with e.g., -mP
tr: support nontrivial equivalence classes, e.g. [=e=] with LC_COLLATE=fr_FR
2003-06-18 11:00:20 +00:00
lib/strftime.c: Since %N is the only format that we need but that
glibc's strftime doesn't support, consider using a wrapper that
would expand /%(-_)?\d*N/ to the desired string and then pass the
resulting string to glibc's strftime.