Merge from vendor branch LIBARCHIVE:
[dragonfly.git] / contrib / libarchive-2.0 / tar / bsdtar.1
1 .\" Copyright (c) 2003-2007 Tim Kientzle
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD: src/usr.bin/tar/bsdtar.1,v 1.33 2007/01/09 08:12:17 kientzle Exp $
26 .\"
27 .Dd April 13, 2004
28 .Dt BSDTAR 1
29 .Os
30 .Sh NAME
31 .Nm tar
32 .Nd manipulate tape archives
33 .Sh SYNOPSIS
34 .Nm
35 .Op Ar bundled-flags Ao args Ac
36 .Op Ao Ar file Ac | Ao Ar pattern Ac ...
37 .Nm
38 .Brq Fl c
39 .Op Ar options
40 .Op Ar files | directories
41 .Nm
42 .Brq Fl r | Fl u
43 .Fl f Ar archive-file
44 .Op Ar options
45 .Op Ar files | directories
46 .Nm
47 .Brq Fl t | Fl x
48 .Op Ar options
49 .Op Ar patterns
50 .Sh DESCRIPTION
51 .Nm
52 creates and manipulates streaming archive files.
53 .Pp
54 The first synopsis form shows a
55 .Dq bundled
56 option word.
57 This usage is provided for compatibility with historical implementations.
58 See COMPATIBILITY below for details.
59 .Pp
60 The other synopsis forms show the preferred usage.
61 The first option to
62 .Nm
63 is a mode indicator from the following list:
64 .Bl -tag -compact -width indent
65 .It Fl c
66 Create a new archive containing the specified items.
67 .It Fl r
68 Like
69 .Fl c ,
70 but new entries are appended to the archive.
71 Note that this only works on uncompressed archives stored in regular files.
72 The
73 .Fl f
74 option is required.
75 .It Fl t
76 List archive contents to stdout.
77 .It Fl u
78 Like
79 .Fl r ,
80 but new entries are added only if they have a modification date
81 newer than the corresponding entry in the archive.
82 Note that this only works on uncompressed archives stored in regular files.
83 The
84 .Fl f
85 option is required.
86 .It Fl x
87 Extract to disk from the archive.
88 If a file with the same name appears more than once in the archive,
89 each copy will be extracted, with later copies overwriting (replacing)
90 earlier copies.
91 .El
92 .Pp
93 In
94 .Fl c ,
95 .Fl r ,
96 or
97 .Fl u
98 mode, each specified file or directory is added to the
99 archive in the order specified on the command line.
100 By default, the contents of each directory are also archived.
101 .Pp
102 In extract or list mode, the entire command line
103 is read and parsed before the archive is opened.
104 The pathnames or patterns on the command line indicate
105 which items in the archive should be processed.
106 Patterns are shell-style globbing patterns as
107 documented in
108 .Xr tcsh 1 .
109 .Sh OPTIONS
110 Unless specifically stated otherwise, options are applicable in
111 all operating modes.
112 .Bl -tag -width indent
113 .It Cm @ Ns Pa archive
114 (c and r mode only)
115 The specified archive is opened and the entries
116 in it will be appended to the current archive.
117 As a simple example,
118 .Dl Nm Fl c Fl f Pa - Pa newfile Cm @ Ns Pa original.tar
119 writes a new archive to standard output containing a file
120 .Pa newfile
121 and all of the entries from
122 .Pa original.tar .
123 In contrast,
124 .Dl Nm Fl c Fl f Pa - Pa newfile Pa original.tar
125 creates a new archive with only two entries.
126 Similarly,
127 .Dl Nm Fl czf Pa - Fl -format Cm pax Cm @ Ns Pa -
128 reads an archive from standard input (whose format will be determined
129 automatically) and converts it into a gzip-compressed
130 pax-format archive on stdout.
131 In this way,
132 .Nm
133 can be used to convert archives from one format to another.
134 .It Fl b Ar blocksize
135 Specify the block size, in 512-byte records, for tape drive I/O.
136 As a rule, this argument is only needed when reading from or writing
137 to tape drives, and usually not even then as the default block size of
138 20 records (10240 bytes) is very common.
139 .It Fl C Ar directory
140 In c and r mode, this changes the directory before adding
141 the following files.
142 In x mode, change directories after opening the archive
143 but before extracting entries from the archive.
144 .It Fl -check-links ( Fl W Cm check-links )
145 (c and r modes only)
146 Issue a warning message unless all links to each file are archived.
147 .It Fl -exclude Ar pattern ( Fl W Cm exclude Ns = Ns Ar pattern )
148 Do not process files or directories that match the
149 specified pattern.
150 Note that exclusions take precedence over patterns or filenames
151 specified on the command line.
152 .It Fl -format Ar format ( Fl W Cm format Ns = Ns Ar format )
153 (c mode only)
154 Use the specified format for the created archive.
155 Supported formats include
156 .Dq cpio ,
157 .Dq pax ,
158 .Dq shar ,
159 and
160 .Dq ustar .
161 Other formats may also be supported; see
162 .Xr libarchive-formats 5
163 for more information about currently-supported formats.
164 .It Fl f Ar file
165 Read the archive from or write the archive to the specified file.
166 The filename can be
167 .Pa -
168 for standard input or standard output.
169 If not specified, the default tape device will be used.
170 (On
171 .Fx ,
172 the default tape device is
173 .Pa /dev/sa0 . )
174 .It Fl -fast-read ( Fl W Cm fast-read )
175 (x and t mode only)
176 Extract or list only the first archive entry that matches each pattern
177 or filename operand.
178 Exit as soon as each specified pattern or filename has been matched.
179 By default, the archive is always read to the very end, since
180 there can be multiple entries with the same name and, by convention,
181 later entries overwrite earlier entries.
182 This option is provided as a performance optimization.
183 .It Fl H
184 (c and r mode only)
185 Symbolic links named on the command line will be followed; the
186 target of the link will be archived, not the link itself.
187 .It Fl h
188 (c and r mode only)
189 Synonym for
190 .Fl L .
191 .It Fl I
192 Synonym for
193 .Fl T .
194 .It Fl -include Ar pattern ( Fl W Cm include Ns = Ns Ar pattern )
195 Process only files or directories that match the specified pattern.
196 Note that exclusions specified with
197 .Fl -exclude
198 take precedence over inclusions.
199 If no inclusions are explicitly specified, all entries are processed by
200 default.
201 The
202 .Fl -include
203 option is especially useful when filtering archives.
204 For example, the command
205 .Dl Nm Fl c Fl f Pa new.tar Fl -include='*foo*' Cm @ Ns Pa old.tgz
206 creates a new archive
207 .Pa new.tar
208 containing only the entries from
209 .Pa old.tgz
210 containing the string
211 .Sq foo .
212 .It Fl j
213 (c mode only)
214 Compress the resulting archive with
215 .Xr bzip2 1 .
216 In extract or list modes, this option is ignored.
217 Note that, unlike other
218 .Nm tar
219 implementations, this implementation recognizes bzip2 compression
220 automatically when reading archives.
221 .It Fl k
222 (x mode only)
223 Do not overwrite existing files.
224 In particular, if a file appears more than once in an archive,
225 later copies will not overwrite earlier copies.
226 .It Fl L
227 (c and r mode only)
228 All symbolic links will be followed.
229 Normally, symbolic links are archived as such.
230 With this option, the target of the link will be archived instead.
231 .It Fl l
232 If
233 .Ev POSIXLY_CORRECT
234 is specified in the environment, this is a synonym for the
235 .Fl -check-links
236 option.
237 Otherwise, an error will be displayed.
238 Users who desire behavior compatible with GNU tar should use
239 the
240 .Fl -one-file-system
241 option instead.
242 .It Fl m
243 (x mode only)
244 Do not extract modification time.
245 By default, the modification time is set to the time stored in the archive.
246 .It Fl n
247 (c, r, u modes only)
248 Do not recursively archive the contents of directories.
249 .It Fl -newer Ar date ( Fl W Cm newer Ns = Ns Ar date )
250 (c, r, u modes only)
251 Only include files and directories newer than the specified date.
252 This compares ctime entries.
253 .It Fl -newer-mtime Ar date ( Fl W Cm newer-mtime Ns = Ns Ar date )
254 (c, r, u modes only)
255 Like
256 .Fl -newer ,
257 except it compares mtime entries instead of ctime entries.
258 .It Fl -newer-than Pa file ( Fl W Cm newer-than Ns = Ns Pa file )
259 (c, r, u modes only)
260 Only include files and directories newer than the specified file.
261 This compares ctime entries.
262 .It Fl -newer-mtime-than Pa file ( Fl W Cm newer-mtime-than Ns = Ns Pa file )
263 (c, r, u modes only)
264 Like
265 .Fl -newer-than ,
266 except it compares mtime entries instead of ctime entries.
267 .It Fl -nodump ( Fl W Cm nodump )
268 (c and r modes only)
269 Honor the nodump file flag by skipping this file.
270 .It Fl -null ( Fl W Cm null )
271 (use with
272 .Fl I ,
273 .Fl T ,
274 or
275 .Fl X )
276 Filenames or patterns are separated by null characters,
277 not by newlines.
278 This is often used to read filenames output by the
279 .Fl print0
280 option to
281 .Xr find 1 .
282 .It Fl O
283 (x, t modes only)
284 In extract (-x) mode, files will be written to standard out rather than
285 being extracted to disk.
286 In list (-t) mode, the file listing will be written to stderr rather than
287 the usual stdout.
288 .It Fl o
289 (x mode only)
290 Use the user and group of the user running the program rather
291 than those specified in the archive.
292 Note that this has no significance unless
293 .Fl p
294 is specified, and the program is being run by the root user.
295 In this case, the file modes and flags from
296 the archive will be restored, but ACLs or owner information in
297 the archive will be discarded.
298 .It Fl -one-file-system ( Fl W Cm one-file-system )
299 (c, r, and u modes)
300 Do not cross mount points.
301 .It Fl P
302 Preserve pathnames.
303 By default, absolute pathnames (those that begin with a /
304 character) have the leading slash removed both when creating archives
305 and extracting from them.
306 Also,
307 .Nm
308 will refuse to extract archive entries whose pathnames contain
309 .Pa ..
310 or whose target directory would be altered by a symlink.
311 This option suppresses these behaviors.
312 .It Fl p
313 (x mode only)
314 Preserve file permissions.
315 Attempt to restore the full permissions, including owner, file modes, file
316 flags and ACLs, if available, for each item extracted from the archive.
317 By default, newly-created files are owned by the user running
318 .Nm ,
319 the file mode is restored for newly-created regular files, and
320 all other types of entries receive default permissions.
321 If
322 .Nm
323 is being run by root, the default is to restore the owner unless the
324 .Fl o
325 option is also specified.
326 .It Fl -strip-components Ar count ( Fl W Cm strip-components Ns = Ns Ar count )
327 (x and t mode only)
328 Remove the specified number of leading path elements.
329 Pathnames with fewer elements will be silently skipped.
330 Note that the pathname is edited after checking inclusion/exclusion patterns
331 but before security checks.
332 .It Fl T Ar filename
333 In x or t mode,
334 .Nm
335 will read the list of names to be extracted from
336 .Pa filename .
337 In c mode,
338 .Nm
339 will read names to be archived from
340 .Pa filename .
341 The special name
342 .Dq -C
343 on a line by itself will cause the current directory to be changed to
344 the directory specified on the following line.
345 Names are terminated by newlines unless
346 .Fl -null
347 is specified.
348 Note that
349 .Fl -null
350 also disables the special handling of lines containing
351 .Dq -C .
352 .It Fl U
353 (x mode only)
354 Unlink files before creating them.
355 Without this option,
356 .Nm
357 overwrites existing files, which preserves existing hardlinks.
358 With this option, existing hardlinks will be broken, as will any
359 symlink that would affect the location of an extracted file.
360 .It Fl v
361 Produce verbose output.
362 In create and extract modes,
363 .Nm
364 will list each file name as it is read from or written to
365 the archive.
366 In list mode,
367 .Nm
368 will produce output similar to that of
369 .Xr ls 1 .
370 Additional
371 .Fl v
372 options will provide additional detail.
373 .It Fl W Ar longopt=value
374 Long options (preceded by
375 .Fl - )
376 are only supported directly on systems that have the
377 .Xr getopt_long 3
378 function.
379 The
380 .Fl W
381 option can be used to access long options on systems that
382 do not support this function.
383 .It Fl w
384 Ask for confirmation for every action.
385 .It Fl X Ar filename
386 Read a list of exclusion patterns from the specified file.
387 See
388 .Fl -exclude
389 for more information about the handling of exclusions.
390 .It Fl y
391 (c mode only)
392 Compress the resulting archive with
393 .Xr bzip2 1 .
394 In extract or list modes, this option is ignored.
395 Note that, unlike other
396 .Nm tar
397 implementations, this implementation recognizes bzip2 compression
398 automatically when reading archives.
399 .It Fl z
400 (c mode only)
401 Compress the resulting archive with
402 .Xr gzip 1 .
403 In extract or list modes, this option is ignored.
404 Note that, unlike other
405 .Nm tar
406 implementations, this implementation recognizes gzip compression
407 automatically when reading archives.
408 .El
409 .Sh ENVIRONMENT
410 The following environment variables affect the execution of
411 .Nm :
412 .Bl -tag -width ".Ev BLOCKSIZE"
413 .It Ev LANG
414 The locale to use.
415 See
416 .Xr environ 7
417 for more information.
418 .It Ev POSIXLY_CORRECT
419 If this environment variable is defined, the
420 .Fl l
421 option will be interpreted in accordance with
422 .St -p1003.1-96 .
423 .It Ev TAPE
424 The default tape device.
425 The
426 .Fl f
427 option overrides this.
428 .It Ev TZ
429 The timezone to use when displaying dates.
430 See
431 .Xr environ 7
432 for more information.
433 .El
434 .Sh FILES
435 .Bl -tag -width ".Ev BLOCKSIZE"
436 .It Pa /dev/sa0
437 The default tape device, if not overridden by the
438 .Ev TAPE
439 environment variable or the
440 .Fl f
441 option.
442 .El
443 .Sh EXIT STATUS
444 .Ex -std
445 .Sh EXAMPLES
446 The following creates a new archive
447 called
448 .Ar file.tar.gz
449 that contains two files
450 .Ar source.c
451 and
452 .Ar source.h :
453 .Dl Nm Fl czf Pa file.tar.gz Pa source.c Pa source.h
454 .Pp
455 To view a detailed table of contents for this
456 archive:
457 .Dl Nm Fl tvf Pa file.tar.gz
458 .Pp
459 To extract all entries from the archive on
460 the default tape drive:
461 .Dl Nm Fl x
462 .Pp
463 To move file hierarchies, invoke
464 .Nm
465 as
466 .Dl Nm Fl cf Pa - Fl C Pa srcdir\ . | Nm Fl xpf Pa - Fl C Pa destdir
467 or more traditionally
468 .Dl cd srcdir \&; Nm Fl cf Pa -\ . | ( cd destdir \&; Nm Fl xpf Pa - )
469 .Pp
470 In create mode, the list of files and directories to be archived
471 can also include directory change instructions of the form
472 .Cm -C Ns Pa foo/baz
473 and archive inclusions of the form
474 .Cm @ Ns Pa archive-file .
475 For example, the command line
476 .Dl Nm Fl c Fl f Pa new.tar Pa foo1 Cm @ Ns Pa old.tgz Cm -C Ns Pa /tmp Pa foo2
477 will create a new archive
478 .Pa new.tar .
479 .Nm
480 will read the file
481 .Pa foo1
482 from the current directory and add it to the output archive.
483 It will then read each entry from
484 .Pa old.tgz
485 and add those entries to the output archive.
486 Finally, it will switch to the
487 .Pa /tmp
488 directory and add
489 .Pa foo2
490 to the output archive.
491 .Pp
492 The
493 .Fl -newer
494 and
495 .Fl -newer-mtime
496 switches accept a variety of common date and time specifications, including
497 .Dq 12 Mar 2005 7:14:29pm ,
498 .Dq 2005-03-12 19:14 ,
499 .Dq 5 minutes ago ,
500 and
501 .Dq 19:14 PST May 1 .
502 .Sh COMPATIBILITY
503 The bundled-arguments format is supported for compatibility
504 with historic implementations.
505 It consists of an initial word (with no leading - character) in which
506 each character indicates an option.
507 Arguments follow as separate words.
508 The order of the arguments must match the order
509 of the corresponding characters in the bundled command word.
510 For example,
511 .Dl Nm Cm tbf 32 Pa file.tar
512 specifies three flags
513 .Cm t ,
514 .Cm b ,
515 and
516 .Cm f .
517 The
518 .Cm b
519 and
520 .Cm f
521 flags both require arguments,
522 so there must be two additional items
523 on the command line.
524 The
525 .Ar 32
526 is the argument to the
527 .Cm b
528 flag, and
529 .Ar file.tar
530 is the argument to the
531 .Cm f
532 flag.
533 .Pp
534 The mode options c, r, t, u, and x and the options
535 b, f, l, m, o, v, and w comply with SUSv2.
536 .Pp
537 For maximum portability, scripts that invoke
538 .Nm tar
539 should use the bundled-argument format above, should limit
540 themselves to the
541 .Cm c ,
542 .Cm t ,
543 and
544 .Cm x
545 modes, and the
546 .Cm b ,
547 .Cm f ,
548 .Cm m ,
549 .Cm v ,
550 and
551 .Cm w
552 options.
553 .Pp
554 On systems that support getopt_long(), additional long options
555 are available to improve compatibility with other tar implementations.
556 .Sh SECURITY
557 Certain security issues are common to many archiving programs, including
558 .Nm .
559 In particular, carefully-crafted archives can request that
560 .Nm
561 extract files to locations outside of the target directory.
562 This can potentially be used to cause unwitting users to overwrite
563 files they did not intend to overwrite.
564 If the archive is being extracted by the superuser, any file
565 on the system can potentially be overwritten.
566 There are three ways this can happen.
567 Although
568 .Nm
569 has mechanisms to protect against each one,
570 savvy users should be aware of the implications:
571 .Bl -bullet -width indent
572 .It
573 Archive entries can have absolute pathnames.
574 By default,
575 .Nm
576 removes the leading
577 .Pa /
578 character from filenames before restoring them to guard against this problem.
579 .It
580 Archive entries can have pathnames that include
581 .Pa ..
582 components.
583 By default,
584 .Nm
585 will not extract files containing
586 .Pa ..
587 components in their pathname.
588 .It
589 Archive entries can exploit symbolic links to restore
590 files to other directories.
591 An archive can restore a symbolic link to another directory,
592 then use that link to restore a file into that directory.
593 To guard against this,
594 .Nm
595 checks each extracted path for symlinks.
596 If the final path element is a symlink, it will be removed
597 and replaced with the archive entry.
598 If
599 .Fl U
600 is specified, any intermediate symlink will also be unconditionally removed.
601 If neither
602 .Fl U
603 nor
604 .Fl P
605 is specified,
606 .Nm
607 will refuse to extract the entry.
608 .El
609 To protect yourself, you should be wary of any archives that
610 come from untrusted sources.
611 You should examine the contents of an archive with
612 .Dl Nm Fl tf Pa filename
613 before extraction.
614 You should use the
615 .Fl k
616 option to ensure that
617 .Nm
618 will not overwrite any existing files or the
619 .Fl U
620 option to remove any pre-existing files.
621 You should generally not extract archives while running with super-user
622 privileges.
623 Note that the
624 .Fl P
625 option to
626 .Nm
627 disables the security checks above and allows you to extract
628 an archive while preserving any absolute pathnames,
629 .Pa ..
630 components, or symlinks to other directories.
631 .Sh SEE ALSO
632 .Xr bzip2 1 ,
633 .Xr cpio 1 ,
634 .Xr gzip 1 ,
635 .Xr mt 1 ,
636 .Xr pax 1 ,
637 .Xr shar 1 ,
638 .Xr libarchive 3 ,
639 .Xr libarchive-formats 5 ,
640 .Xr tar 5
641 .Sh STANDARDS
642 There is no current POSIX standard for the tar command; it appeared
643 in
644 .St -p1003.1-96
645 but was dropped from
646 .St -p1003.1-2001 .
647 The options used by this implementation were developed by surveying a
648 number of existing tar implementations as well as the old POSIX specification
649 for tar and the current POSIX specification for pax.
650 .Pp
651 The ustar and pax interchange file formats are defined by
652 .St -p1003.1-2001
653 for the pax command.
654 .Sh HISTORY
655 A
656 .Nm tar
657 command appeared in Seventh Edition Unix.
658 There have been numerous other implementations,
659 many of which extended the file format.
660 John Gilmore's
661 .Nm pdtar
662 public-domain implementation (circa November, 1987)
663 was quite influential, and formed the basis of GNU tar.
664 GNU tar was included as the standard system tar
665 in
666 .Fx
667 beginning with
668 .Fx 1.0 .
669 .Pp
670 This is a complete re-implementation based on the
671 .Xr libarchive 3
672 library.
673 .Sh BUGS
674 POSIX and GNU violently disagree about the meaning of the
675 .Fl l
676 option.
677 Because of the potential for disaster if someone expects
678 one behavior and gets the other, the
679 .Fl l
680 option is deliberately broken in this implementation.
681 .Pp
682 The
683 .Fl C Pa dir
684 option may differ from historic implementations.
685 .Pp
686 All archive output is written in correctly-sized blocks, even
687 if the output is being compressed.
688 Whether or not the last output block is padded to a full
689 block size varies depending on the format and the
690 output device.
691 For tar and cpio formats, the last block of output is padded
692 to a full block size if the output is being
693 written to standard output or to a character or block device such as
694 a tape drive.
695 If the output is being written to a regular file, the last block
696 will not be padded.
697 Many compressors, including
698 .Xr gzip 1
699 and
700 .Xr bzip2 1 ,
701 complain about the null padding when decompressing an archive created by
702 .Nm ,
703 although they still extract it correctly.
704 .Pp
705 The compression and decompression is implemented internally, so
706 there may be insignificant differences between the compressed output
707 generated by
708 .Dl Nm Fl czf Pa - file
709 and that generated by
710 .Dl Nm Fl cf Pa - file | Nm gzip
711 .Pp
712 The default should be to read and write archives to the standard I/O paths,
713 but tradition (and POSIX) dictates otherwise.
714 .Pp
715 The
716 .Cm r
717 and
718 .Cm u
719 modes require that the archive be uncompressed
720 and located in a regular file on disk.
721 Other archives can be modified using
722 .Cm c
723 mode with the
724 .Pa @archive-file
725 extension.
726 .Pp
727 To archive a file called
728 .Pa @foo
729 or
730 .Pa -foo
731 you must specify it as
732 .Pa ./@foo
733 or
734 .Pa ./-foo ,
735 respectively.
736 .Pp
737 In create mode, a leading
738 .Pa ./
739 is always removed.
740 A leading
741 .Pa /
742 is stripped unless the
743 .Fl P
744 option is specified.
745 .Pp
746 There needs to be better support for file selection on both create
747 and extract.
748 .Pp
749 There is not yet any support for multi-volume archives or for archiving
750 sparse files.
751 .Pp
752 Converting between dissimilar archive formats (such as tar and cpio) using the
753 .Cm @ Ns Pa -
754 convention can cause hard link information to be lost.
755 (This is a consequence of the incompatible ways that different archive
756 formats store hardlink information.)
757 .Pp
758 There are alternative long options for many of the short options that
759 are deliberately not documented.