]> Dogcows Code - chaz/tar/blob - NEWS
Updated
[chaz/tar] / NEWS
1 GNU tar NEWS - User visible changes.
2 Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003,
3 2004, 2005
4 Free Software Foundation, Inc.
5 See the end for copying conditions.
6
7 Please send GNU tar bug reports to <bug-tar@gnu.org>
8 \f
9 version 1.15.2 (CVS version -- unreleased)
10
11 * Bugfixes
12
13 ** Allow non-option arguments to be interspersed with options.
14 ** When extracting or listing archives in old GNU format, tar
15 used to read an extra block of data after a long name header
16 if length of the member name was divisible by block size (512).
17 Consequently, the file pointer was set off and the next member
18 was not processed correctly.
19
20 \f
21 version 1.15.1 - Sergey Poznyakoff, 2004-12-21
22
23 This version fixes a bug introduced in 1.15 which caused
24 tar to refuse to extract files from standard input.
25
26 \f
27 version 1.15 - Sergey Poznyakoff, 2004-12-20
28
29 * Compressed archives are recognised automatically, it is no longer
30 necessary to specify -Z, -z, or -j options to read them. Thus, you can
31 now run `tar tf archive.tar.gz'.
32
33 * When restoring incremental dumps, --one-file-system option
34 prevents directory hierarchies residing on different devices
35 from being purged.
36
37 With the previous versions of tar it was dangerous to create
38 incremental dumps with --one-file-system option, since they
39 would recursively remove mount points when restoring from the
40 back up. This change fixes the bug.
41
42 * Renamed --strip-path to --strip-components for consistency with
43 the GNU convention.
44
45 * Skipping archive members is sped up if the archive media supports
46 seeks.
47
48 * Restore script starts restoring only if it is given --all (-a) option,
49 or some patterns. This is to prevent accidental restores.
50
51 * `tar --verify' prints a warning if during archive creation some of
52 the file names had their prefixes stripped off.
53
54 * New option --exclude-caches instructs tar to exclude cache directories
55 automatically on archive creation. Cache directories are those
56 containing a standardized tag file, as specified at:
57
58 http://www.brynosaurus.com/cachedir/spec.html
59
60 * New configure option --with-rmt allows to specify full path name to
61 the `rmt' utility. This supercedes DEFAULT_RMT_COMMAND variable
62 introduced in version 1.14
63
64 * New configure variable DEFAULT_RMT_DIR allows to specify the directory
65 where to install `rmt' utility. This is necessary since modifying
66 --libexecdir as was suggested for version 1.14 produced a side effect: it
67 also modified installation prefix for backup scripts (if
68 --enable-backup-scripts was given).
69
70 * Bugfixes:
71 ** Fixed flow in recognizing files to be included in incremental dumps.
72 ** Correctly recognize sparse archive members when used with -T option.
73 ** GNU multivolume headers cannot store filenames longer than 100 characters.
74 Do not allow multivolume archives to begin with such filenames.
75 ** If a member with link count > 2 was stored in the archive twice,
76 previous versions of tar were not able to extract it, since they
77 were trying to link the file to itself, which always failed and
78 lead to removing the already extracted copy. Preserve the first
79 extracted copy in such cases.
80 ** Restore script was passing improper argument to tar --listed option (which
81 didn't affect the functionality, but was logically incorrect).
82 ** Fixed verification of created archives.
83 ** Fixed unquoting of file names containing backslash escapes (previous
84 versions failed to recognize \a and \v).
85 ** When attempting to delete a non-existing member from the archive, previous
86 versions of tar used to overwrite last archive block with zeroes.
87
88 \f
89 version 1.14 - Sergey Poznyakoff, 2004-05-11
90
91 * Added support for POSIX.1-2001 and ustar archive formats.
92 * New option --format allows to select the output archive format
93 * The default output format can be selected at configuration time
94 by presetting the environment variable DEFAULT_ARCHIVE_FORMAT.
95 Allowed values are GNU, V7, OLDGNU and POSIX.
96 * New option --strip-path allows to cut off a given number of
97 path elements from the name of the file being extracted.
98
99 * New options --index-file, --no-overwrite-dir. The --overwrite-dir
100 option is now the default; use --no-overwrite-dir if you prefer
101 the previous default behavior.
102
103 * The semantics of -o option is changed. When extracting, it
104 does the same as --no-same-owner GNU tar option. This is compatible
105 with UNIX98 tar. Otherwise, its effect is the same as that of
106 --old-archive option. This latter is deprecated and will be removed
107 in future.
108
109 * New option --check-links prints a message if not all links are dumped
110 for a file being archived. This corresponds to the UNIX98 -l option.
111 The current semantics of the -l option is retained for compatibility
112 with previous releases, however such usage is strongly deprecated as
113 the option will change to its UNIX98 semantics in the future releases.
114
115 * New option --occurrence[=N] can be used in conjunction with one of
116 the subcommands --delete, --diff, --extract or --list when a list of
117 files is given either on the command line or via -T option. This
118 option instructs tar to process only the Nth occurrence of each named
119 file. N defaults to 1, so `tar -x -f archive --occurrence filename'
120 extracts the first occurrence of `filename' from `archive'
121 and terminates without scanning to the end of the archive.
122
123 * New option --pax-option allows to control the handling of POSIX
124 keywords in `pax' extended headers. It is equivalent to `pax'
125 -o option.
126
127 * --incremental and --listed-incremental options work correctly on
128 individual files, as well as on directories.
129
130 * New scripts: backup (replaces old level-0 and level-1) and restore.
131 The scripts are compiled and installed if --enable-backup-scripts
132 option is given to configure.
133
134 * By default tar searches "rmt" utility in "$prefix/libexec/rmt",
135 which is consistent with the location where the version of "rmt"
136 included in the package is installed. Previous versions of tar
137 used "/etc/rmt". To install "rmt" to its traditional location,
138 run configure with option --libexecdir=/etc. Otherwise, if you
139 already have rmt installed and wish to use it, instead of the
140 shipped in version, set the variable DEFAULT_RMT_COMMAND to
141 the full path name of the utility, e.g. ./configure
142 DEFAULT_RMT_COMMAND=/etc/rmt.
143
144 Notice also that the full path name of the "rmt" utility to
145 use can be set at runtime, by giving option --rmt-command to
146 tar.
147
148 * Removed obsolete command line options:
149 ** --absolute-paths superseded by --absolute-names
150 ** --block-compress is not needed any longer
151 ** --block-size superseded by --blocking-factor
152 ** --modification-time superseded by --touch
153 ** --read-full-blocks superseded by --read-full-records
154 ** --record-number superseded by --block-number
155 ** --version-control superseded by --backup
156
157 * New message translations fi (Finnish), gl (Galician), hr (Croatian),
158 hu (Hungarian), ms (Malaysian), nb (Norwegian), ro (Romanian), sk
159 (Slovak), zh_CN (Chinese simplified), zh_TW (Chinese traditional).
160 The code 'no' for Norwegian (Bokmål) has been withdrawn; use 'nb' instead.
161
162 * Bug fixes.
163
164 \f
165 version 1.13.25 - Paul Eggert, 2001-09-26
166
167 * Bug fixes.
168
169 \f
170 version 1.13.24 - Paul Eggert, 2001-09-22
171
172 * New option --overwrite-dir.
173 * Fixes for buffer overrun, porting, and copyright notice problems.
174 * The message translations for Korean are available again.
175
176 \f
177 version 1.13.23 - Paul Eggert, 2001-09-13
178
179 * Bug, porting, and copyright notice fixes.
180
181 \f
182 version 1.13.22 - Paul Eggert, 2001-08-29
183
184 * Bug fixes.
185
186 \f
187 version 1.13.21 - Paul Eggert, 2001-08-28
188
189 * Porting and copyright notice fixes.
190
191 \f
192 version 1.13.20 - Paul Eggert, 2001-08-27
193
194 * Some bugs were fixed:
195 - security problems
196 - hard links to symbolic links
197
198 * New option --recursion (the default) that is the inverse of --no-recursion.
199
200 * New options --anchored, --ignore-case, --wildcards,
201 --wildcards-match-slash, and their negations (e.g., --no-anchored).
202 Along with --recursion and --no-recursion, these options control how
203 exclude patterns are interpreted.
204
205 * The default interpretation of exclude patterns is now --no-anchored
206 --no-ignore-case --recursion --wildcards --wildcards-match-slash.
207 This is a quiet change to the semantics of --exclude. The previous
208 semantics were a failed attempt at backward compatibility but it
209 became clear that the semantics were puzzling and did not satisfy
210 everybody. Rather than continue to try to revive that dead horse we
211 thought it better to substitute cleaner semantics, with options so
212 that you can change the behavior more to your liking.
213
214 * New message translations for Indonesian and Turkish.
215 The translation for Korean has been withdrawn due to encoding errors.
216 It will be reissued once those are fixed.
217
218 \f
219 version 1.13.19 - Paul Eggert, 2001-01-13
220
221 * The -I option has been withdrawn, as it was buggy and confusing.
222 Eventually it is planned to be reintroduced, with the same meaning as -T.
223
224 * With an option like -N DATE, if DATE starts with "/" or ".", it is taken
225 to be a file name; the last-modified time of that file is used as the date.
226
227 \f
228 version 1.13.18 - Paul Eggert, 2000-10-29
229
230 * Some security problems have been fixed. `tar -x' now modifies only
231 files under the working directory, unless you also specify an unsafe
232 option like --absolute-names or --overwrite.
233
234 * The short name of the --bzip option has been changed to -j,
235 and -I is now an alias for -T, for compatibility with Solaris tar.
236
237 * The manual is now distributed under the GNU Free Documentation License.
238
239 * The new environment variable TAR_OPTIONS holds default command-line options.
240
241 * The --no-recursion option now affects extraction too.
242
243 * The wording in some diagnostics has been changed slightly.
244
245 * Snapshot files now record whether each file was accessed via NFS.
246 The new file format is upward- and downward-compatible with the old.
247
248 * New language supported: da.
249
250 * Compilation by traditional (K&R) C compilers is no longer supported.
251 If you still use such a compiler, please use GCC instead.
252
253 * This version of tar works best with GNU gzip test version 1.3 or later.
254 Please see <ftp://alpha.gnu.org/gnu/gzip/>.
255
256 * `tar --delete -f -' now works again.
257
258 \f
259 version 1.13.17 - Paul Eggert, 2000-01-07.
260
261 * `tar --delete -f -' is no longer allowed; it was too buggy.
262 * Diagnostic messages have been made more regular and consistent.
263
264 \f
265 version 1.13.16 - Paul Eggert, 1999-12-13.
266
267 * By default, tar now refuses to overwrite an existing file when
268 extracting files from an archive; instead, it removes the file
269 before extracting it. If the existing file is a symbolic link, the
270 link is removed and not the pointed-to file. There is one
271 exception: existing nonempty directories are not removed, nor are
272 their ownerships or permissions extracted. This fixes some
273 longstanding security problems.
274
275 The new --overwrite option enables the old default behavior.
276
277 For regular files, tar implements this change by using the O_EXCL
278 option of `open' to ensure that it creates the file; if this fails, it
279 removes the file and tries again. This is similar to the behavior of
280 the --unlink-first option, but it is faster in the common case of
281 extracting a new directory.
282
283 * By default, tar now ignores file names containing a component of `..'
284 when extracting, and warns about such file names when creating an archive.
285 To enable the old behavior, use the -P or --absolute-names option.
286
287 * Tar now handles file names with multibyte encodings (e.g. UTF-8, Shift-JIS)
288 correctly. It relies on the mbrtowc function to handle multibyte characters.
289
290 * The file generated by -g or --listed-incremental now uses a format
291 that is independent of locale, so that users need not worry about
292 locale when restoring a backup. This is needed for proper support
293 of multibyte characters. Old-format files can still be read, and
294 older versions of GNU tar can read new-format files, unless member
295 names have multibyte chars.
296
297 * Many diagnostics have been changed slightly, so that file names are
298 now output unambiguously. File names in diagnostics now are either
299 `quoted like this' (in the default C locale) or are followed by
300 colon, newline, or space, depending on context. Unprintable
301 characters are escaped with a C-like backslash conventions.
302 Terminating characters (e.g. close-quote, colon, newline)
303 are also escaped as needed.
304
305 * tar now ignores socket files when creating an archive.
306 Previously tar archived sockets as fifos, which caused problems.
307
308 \f
309 version 1.13.15 - Paul Eggert, 1999-12-03.
310
311 * If a file's ctime changes when being archived, report an error.
312 Previously tar looked at mtime, which missed some errors.
313
314 \f
315 version 1.13.14 - Paul Eggert, 1999-11-07.
316
317 * New translations ja, pt_BR.
318 * New options --help and --version for rmt.
319 * Ignore Solaris door files when creating an archive.
320
321 \f
322 version 1.13.13 - Paul Eggert, 1999-10-11.
323
324 * Invalid headers in tar files now elicit errors, not just warnings.
325 * `tar --version' output conforms to the latest GNU coding standards.
326 * If you specify an invalid date, `tar' now substitutes (time_t) -1.
327 * `configure --with-dmalloc' is no longer available.
328
329 \f
330 version 1.13.12 - Paul Eggert, 1999-09-24.
331
332 * `tar' now supports hard links to symbolic links.
333
334 * New options --no-same-owner, --no-same-permissions.
335
336 * --total now also outputs a human-readable size, and a throughput value.
337
338 * `tar' now uses two's-complement base-256 when outputting header
339 values that are out of the range of the standard unsigned base-8
340 format. This affects archive members with negative or huge time
341 stamps or uids, and archive members 8 GB or larger. The new tar
342 archives cannot be read by traditional tar, or by older versions of
343 GNU tar. Use the --old-archive option to revert to the old
344 behavior, which uses unportable representations for negative values,
345 and which rejects large files.
346
347 * On 32-bit hosts, `tar' now assumes that an incoming time stamp T in
348 the range 2**31 <= T < 2**32 represents the negative time (T -
349 2**32). This behavior is nonstandard and is not portable to 64-bit
350 time_t hosts, so `tar' issues a warning.
351
352 * `tar' no longer gives up extracting immediately upon discovering
353 that an archive contains garbage at the end. It attempts to extract
354 as many files as possible from the good data before the garbage.
355
356 * A read error now causes a nonzero exit status, not just a warning.
357
358 * Some diagnostics have been reworded for consistency.
359
360 \f
361 version 1.13.11 - Paul Eggert, 1999-08-23.
362
363 * The short name of the --bzip option has been changed to -I,
364 for compatibility with paxutils.
365
366 * -T /dev/null now matches nothing; previously, it matched anything
367 if no explicit operands were given.
368
369 * The `--' option now works the same as with other GNU utilities;
370 it causes later operands to be interpreted as file names, not options,
371 even if they begin with `-'.
372
373 * For the --newer and --after-date options, the table of time zone
374 abbreviations like `EST' has been updated to match current practice.
375 Also, local time abbreviations are now recognized, even if they are
376 not in tar's hardwired table. Remember, though, that you should use
377 numeric UTC offsets like `-0500' instead of abbreviations like
378 `EST', as abbreviations are not standardized and are ambiguous.
379
380 \f
381 version 1.13.10 - Paul Eggert, 1999-08-20.
382
383 * `tar' now uses signed base-64 when outputting header values that are
384 out of the range of the standard unsigned base-8 format. [This
385 change was superseded in 1.13.12, described above.]
386
387 \f
388 version 1.13.9 - Paul Eggert, 1999-08-18.
389
390 * `tar' now writes two zero blocks at end-of-archive instead of just one.
391 POSIX.1 requires this, and some other `tar' implementations check for it.
392
393 * `tar' no longer silently accepts a block containing nonzero checksum bytes
394 as a zero block.
395
396 * `tar' now reads buggy tar files that have a null byte at the start of a
397 numeric header field.
398
399 \f
400 version 1.13.8 - Paul Eggert, 1999-08-16.
401
402 * For compatibility with traditional `tar', intermediate directories
403 created automatically by root are no longer given the uid and gid of
404 the original file or directory.
405
406 \f
407 version 1.13.7 - Paul Eggert, 1999-08-14.
408
409 * --listed-incremental and --newer are now incompatible options.
410
411 * When creating an archive, leading `./' is no longer stripped,
412 to match traditional tar's behavior (and simplify the documentation).
413
414 * --diff without --absolute-names no longer falls back on absolute names.
415
416 \f
417 version 1.13.6 - Paul Eggert, 1999-08-11.
418
419 * An --exclude pattern containing / now excludes a file only if it matches an
420 initial prefix of the file name; a pattern without / continues to
421 exclude a file if it matches any file name component.
422
423 * The protocol for talking to rmt has been extended slightly.
424 Open flags are now communicated in symbolic format as well as numeric.
425 The symbolic format (e.g. "O_WRONLY|O_CREAT|O_TRUNC") is for portability
426 when rmt is operating on a different operating system from tar.
427 The numeric format is retained, and rmt uses it if symbolic format is absent,
428 for backward compatibility with older versions of tar and rmt.
429
430 * When writing GNU tar format headers, tar now uses signed base-64
431 for values that cannot be represented in unsigned octal.
432 This supports larger files (2**66 - 1 bytes instead of 2**33 - 1 bytes),
433 larger uids, negative time stamps, etc.
434
435 * When extracting files with unknown ownership, tar now looks up the
436 uid and gid "nobody" on hosts whose headers do not define UID_NOBODY
437 and GID_NOBODY, and falls back on uid/gid -2 if there is no "nobody".
438
439 * tar -t --numeric-owner now prints numeric uids and gids, not symbolic.
440
441 * New option -y or --bzip2 for bzip2 compression, by popular request.
442
443 \f
444 version 1.13.5 - Paul Eggert, 1999-07-20.
445
446 * Do the delayed updates of file metadata even after a fatal error.
447
448 \f
449 version 1.13.4 - Paul Eggert, 1999-07-20.
450
451 * Do not chmod unless we are root or the -p option was given;
452 this matches historical practice.
453
454 \f
455 version 1.13.3 - Paul Eggert, 1999-07-16.
456
457 * A path name is excluded if any of its file name components matches an
458 excluded pattern, even if the path name was specified on the command line.
459 Also see 1.13.6 for later changes in this area.
460
461 \f
462 version 1.13.2 - Paul Eggert, 1999-07-14.
463
464 * Bug reporting address changed to <bug-tar@gnu.org>.
465
466 \f
467 version 1.13.1 - Paul Eggert, 1999-07-12.
468
469 * Bug fixes only.
470 \f
471 version 1.13 - Paul Eggert, 1999-07-08.
472
473 * Support for large files, e.g. files larger than 2 GB on many 32-bit hosts.
474 Also, support for larger uids, device ids, etc.
475 * Many bug fixes and porting fixes.
476 * This release is only for fixes. A more ambitious test release,
477 with new features, is available as part of the paxutils. Please see:
478 ftp://alpha.gnu.org/gnu/paxutils/
479 The fixes in this release are intended to be merged with paxutils
480 at some point, but they haven't been merged yet.
481 * An interim GNU tar alpha had new --bzip2 and --ending-file options,
482 but they have been removed to maintain compatibility with paxutils.
483 Please try --use=bzip2 instead of --bzip2.
484 \f
485 Version 1.12 - François Pinard, 1997-04.
486
487 Sensitive matters
488 * Use shell globbing patterns for --label, instead of regular expressions.
489 * Do not quote anymore internally over the quoting done by the shell.
490
491 Output for humans
492 * Offer internationalization capabilities of most recent GNU gettext.
493 * Messages available in many more languages, thanks to all translators!
494 * Usage of ISO 8601 dates in listings, instead of local American dates.
495 * More normalization and cleanup in error messages.
496
497 Creation
498 * For helping using tar with find, offer a --no-recursion option.
499 * Implement --numeric-owner for ignoring symbolic names at create time.
500 * New --owner, --group --mode options, still preliminary.
501 * Recognize creating an archive on /dev/null, so Amanda works faster.
502 * Object to the creation of an empty archive (like in `tar cf FILE').
503 * Barely start implementing --posix and POSIXLY_CORRECT.
504
505 Extraction
506 * Make a better job at restoring file and directory attributes.
507 * Automatically attempt deleting existing files when in the way.
508 * Option --unlink-first (-U) removes most files prior to extraction.
509 * Option --recursive-unlink removes non-empty directories when in the way.
510 * Option --numeric-owner ignores owner/group names, it uses UID/GID instead.
511 * Use global umask when creating missing intermediate directories.
512 * When symlinks are not available, extract symbolic links as hard links.
513 * Diagnose extraction of contiguous files as regular files.
514 * New --backup, --suffix and --version-control options.
515
516 Various changes
517 * Better support of huge archives with --tape-length and --totals.
518 * Rename option --read-full-blocks (-B) to --read-full-records (-B).
519 * Rename option --block-size (-b) to --blocking-factor (-b).
520 * Rename option --record-number (-R) to --block-number (-R).
521 * With --block-number (-R), report null blocks and end of file.
522 * Implement --record-size for introducing a size in bytes.
523 * Delete --block-compress option and rather decide it automatically.
524 * Rename option --modification-time to --touch.
525
526 Many bugs are squashed, while others still run free.
527 \f
528 Version 1.11.8 - François Pinard, 1995-06.
529
530 * Messages available in French, German, Portuguese and Swedish.
531 * The distribution provides a rudimentary Texinfo manual.
532 * The device defaults to stdin/stdout, unless overridden by the installer.
533 * Option --sparse (-S) should work on more systems.
534 * Option --rsh-command may select an alternative remote shell program.
535
536 Most changes are internal, and should yield better portability.
537 \f
538 Version 1.11.2 - Michael Bushnell, 1993-03.
539
540 * Changes in backup scripts: cleaned up considerably; notices error
541 conditions better over rsh; DUMP_REMIND_SCRIPT is now an option in
542 backup-specs; new file dump-remind is an example of a
543 DUMP_REMIND_SCRIPT.
544
545 * Superfluous "Reading dirname" was a bug; fixed.
546
547 * Incompatibility problems with a bug on Solaris are fixed.
548
549 * New option --gzip (aliases are --ungzip and -z); calls gzip instead
550 of compress. Also, --use-compress-program lets you specify any
551 compress program. --compress-block is renamed --block-compress and
552 now requires one of the three compression options to be specified.
553
554 * Several error messages are cleaned up.
555
556 * Directory owners are now set properly when running as root.
557
558 * Provide DUMP_REMIND_SCRIPT in backup-specs as a possible option
559 for --info-script.
560
561 * Behave better with broken rmt servers.
562
563 * Dump scripts no longer use --atime-preserve; this causes a nasty probem.
564
565 * Several Makefile cleanups.
566 \f
567 Version 1.11.1 - Michael Bushnell, 1992-09.
568
569 * Many bug fixes.
570 \f
571 Version 1.11 - Michael Bushnell, 1992-09.
572 Version 1.10.16 - 1992-07.
573 Version 1.10.15 - 1992-06.
574 Version 1.10.14 - 1992-05.
575 Version 1.10.13 - 1992-01.
576
577 * Many bug fixes.
578
579 * Now uses GNU standard configure, generated by Autoconf.
580
581 * Long options now use `--'; use of `+' is deprecated and support
582 for it will eventually be removed.
583
584 * New option --null causes filenames read by -T to be
585 null-terminated, and causes -C to be ignored.
586
587 * New option --remove-files deletes files (but not directories)
588 after they are added to the archive.
589
590 * New option --ignore-failed-read prevents read-errors from affecting
591 the exit status.
592
593 * New option --checkpoint prints occasional messages as the tape
594 is being read or written.
595
596 * New option --show-omitted-dirs prints the names of directories
597 omitted from the archive.
598
599 * Some tape drives which use a non-standard method of indicating
600 end-of-tape now work correctly with multi-tape archives.
601
602 * --volno-file: Read the volume number used in prompting the user
603 (but not in recording volume ID's on the archive) from a file.
604
605 * When using --multi-volume, you can now give multiple -f arguments;
606 the various tape drives will get used in sequence and then wrap
607 around to the beginning.
608
609 * Remote archive names no longer have to be in /dev: any file with a
610 `:' is interpreted as remote. If new option --force-local is given,
611 then even archive files with a `:' are considered local.
612
613 * New option --atime-preserve restores (if possible) atimes to
614 their original values after dumping the file.
615
616 * No longer does tar confusingly dump "." when you don't tell it
617 what to dump.
618
619 * When extracting directories, tar now correctly restores their
620 modification and access times.
621
622 * Longnames support is redone differently--long name info directly
623 precedes the long-named file or link in the archive, so you no
624 longer have to wait for the extract to hit the end of the tape for
625 long names to work.
626 \f
627 Version 1.10 - Michael Bushnell, 1991-07.
628
629 * Filename to -G is optional. -C works right. Names +newer and
630 +newer-mtime work right.
631
632 * -g is now +incremental, -G is now +listed-incremental.
633
634 * Sparse files now work correctly.
635
636 * +volume is now called +label.
637
638 * +exclude now takes a filename argument, and +exclude-from does
639 what +exclude used to do.
640
641 * Exit status is now correct.
642
643 * +totals keeps track of total I/O and prints it when tar exits.
644
645 * When using +label with +extract, the label is now a regexp.
646
647 * New option +tape-length (-L) does multi-volume handling like BSD
648 dump: you tell tar how big the tape is and it will prompt at that
649 point instead of waiting for a write error.
650
651 * New backup scripts level-0 and level-1 which might be useful
652 to people. They use a file "backup-specs" for information, and
653 shouldn't need local modification. These are what we use to do
654 all our backups at the FSF.
655 \f
656 Version 1.09 - Jay Fenlason, 1990-10.
657 Version 1.08 - Jay Fenlason, 1990-01.
658 Versions 1.07 back to 1.00 by Jay Fenlason.
659
660 * See ChangeLog for more details.
661
662 \f
663
664 Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003
665 Free Software Foundation, Inc.
666
667 This file is part of GNU tar.
668
669 GNU tar is free software; you can redistribute it and/or modify
670 it under the terms of the GNU General Public License as published by
671 the Free Software Foundation; either version 2, or (at your option)
672 any later version.
673
674 GNU tar is distributed in the hope that it will be useful,
675 but WITHOUT ANY WARRANTY; without even the implied warranty of
676 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
677 GNU General Public License for more details.
678
679 You should have received a copy of the GNU General Public License
680 along with tar; see the file COPYING. If not, write to
681 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
682 Boston, MA 02111-1307, USA.
683 \f
684 Local variables:
685 mode: outline
686 paragraph-separate: "[ \f]*$"
687 end:
This page took 0.061885 seconds and 5 git commands to generate.