TODO 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. Suggestions for improving GNU tar.
  2. * Incorporate fixes from major distributions, e.g., Debian GNU/Linux.
  3. * Add support for restoring file time stamps to sub-second resolution,
  4. if the file system supports this.
  5. * Add support for restoring the attributes of symbolic links, for
  6. OSes like FreeBSD that have the lutimes and lchmod functions.
  7. * --append should bail out if the two archives are of different types.
  8. * Add support for GNU private keywords in POSIX 1003.1-2001 headers,
  9. so that the GNU extensions (--incremental, --label and
  10. --multi-volume) may be used with POSIX archives.
  11. * Add support for a 'pax' command that conforms to POSIX 1003.1-2001.
  12. This would unify paxutils with tar.
  13. * Remove command-line incompatibilities between GNU tar and UNIX tar
  14. as specified by UNIX98. The main problem is:
  15. l GNU tar doesn't cross filesystem boundaries.
  16. UNIX98 tar warns if all links cannot be resolved.
  17. (GNU tar --check-links option)
  18. Currently tar prints a warning when this option is used. Sometime
  19. in the future its semantics will be changed to that of --check-links.
  20. In the meanwhile we should announce a phase-in period where "l"
  21. changes in semantics.
  22. * Interoperate better with Joerg Schilling's star implementation.
  23. * Add an option to remove files that compare successfully.
  24. From: Roesinger Eric <[email protected]>
  25. Date: Sat, 28 Jul 2001 18:43:43 -0500
  26. It would be useful to be able to use '--remove-files' with '--diff',
  27. to remove all files that compare successfully, when verifying a backup.
  28. * Add tests for the new functonality.
  29. * Consider this:
  30. From: Dennis Pund
  31. Subject: TAR suggestion...
  32. Date: Wed, 1 May 2002 18:26:36 -0500 (EST)
  33. What I would like to do is:
  34. foo my.tar.gz | tar -xzOf - | tar -cMf - -L 650000 - | bar
  35. where 'foo' is a program that retrieves the archive and streams it
  36. to stdout and bar is a program that streams the stdin to CDR.
  37. (http://mail.gnu.org/archive/html/bug-gnu-utils/2002-05/msg00022.html)
  38. * Copyright notice
  39. Copyright (C) 2003, 2004 Free Software Foundation, Inc.
  40. This file is part of GNU tar.
  41. GNU tar is free software; you can redistribute it and/or modify
  42. it under the terms of the GNU General Public License as published by
  43. the Free Software Foundation; either version 2, or (at your option)
  44. any later version.
  45. GNU tar is distributed in the hope that it will be useful,
  46. but WITHOUT ANY WARRANTY; without even the implied warranty of
  47. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  48. GNU General Public License for more details.
  49. You should have received a copy of the GNU General Public License
  50. along with tar; see the file COPYING. If not, write to
  51. the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  52. Boston, MA 02110-1301, USA.
  53. Local variables:
  54. mode: outline
  55. paragraph-separate: "[ ]*$"
  56. end: