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