]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/libarchive/tar/bsdtar.1
MFC r316456,352732:
[FreeBSD/stable/10.git] / contrib / libarchive / tar / bsdtar.1
1 .\" Copyright (c) 2003-2007 Tim Kientzle
2 .\" Copyright (c) 2017 Martin Matuska
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
27 .\"
28 .Dd June 3, 2019
29 .Dt TAR 1
30 .Os
31 .Sh NAME
32 .Nm tar
33 .Nd manipulate tape archives
34 .Sh SYNOPSIS
35 .Nm
36 .Op Ar bundled-flags Ao args Ac
37 .Op Ao Ar file Ac | Ao Ar pattern Ac ...
38 .Nm
39 .Brq Fl c
40 .Op Ar options
41 .Op Ar files | Ar directories
42 .Nm
43 .Brq Fl r | Fl u
44 .Fl f Ar archive-file
45 .Op Ar options
46 .Op Ar files | Ar directories
47 .Nm
48 .Brq Fl t | Fl x
49 .Op Ar options
50 .Op Ar patterns
51 .Sh DESCRIPTION
52 .Nm
53 creates and manipulates streaming archive files.
54 This implementation can extract from tar, pax, cpio, zip, jar, ar, xar,
55 rpm, 7-zip, and ISO 9660 cdrom images and can create tar, pax, cpio, ar, zip,
56 7-zip, and shar archives.
57 .Pp
58 The first synopsis form shows a
59 .Dq bundled
60 option word.
61 This usage is provided for compatibility with historical implementations.
62 See COMPATIBILITY below for details.
63 .Pp
64 The other synopsis forms show the preferred usage.
65 The first option to
66 .Nm
67 is a mode indicator from the following list:
68 .Bl -tag -compact -width indent
69 .It Fl c
70 Create a new archive containing the specified items.
71 The long option form is
72 .Fl Fl create .
73 .It Fl r
74 Like
75 .Fl c ,
76 but new entries are appended to the archive.
77 Note that this only works on uncompressed archives stored in regular files.
78 The
79 .Fl f
80 option is required.
81 The long option form is
82 .Fl Fl append .
83 .It Fl t
84 List archive contents to stdout.
85 The long option form is
86 .Fl Fl list .
87 .It Fl u
88 Like
89 .Fl r ,
90 but new entries are added only if they have a modification date
91 newer than the corresponding entry in the archive.
92 Note that this only works on uncompressed archives stored in regular files.
93 The
94 .Fl f
95 option is required.
96 The long form is
97 .Fl Fl update .
98 .It Fl x
99 Extract to disk from the archive.
100 If a file with the same name appears more than once in the archive,
101 each copy will be extracted, with later copies overwriting (replacing)
102 earlier copies.
103 The long option form is
104 .Fl Fl extract .
105 .El
106 .Pp
107 In
108 .Fl c ,
109 .Fl r ,
110 or
111 .Fl u
112 mode, each specified file or directory is added to the
113 archive in the order specified on the command line.
114 By default, the contents of each directory are also archived.
115 .Pp
116 In extract or list mode, the entire command line
117 is read and parsed before the archive is opened.
118 The pathnames or patterns on the command line indicate
119 which items in the archive should be processed.
120 Patterns are shell-style globbing patterns as
121 documented in
122 .Xr tcsh 1 .
123 .Sh OPTIONS
124 Unless specifically stated otherwise, options are applicable in
125 all operating modes.
126 .Bl -tag -width indent
127 .It Cm @ Ns Pa archive
128 (c and r modes only)
129 The specified archive is opened and the entries
130 in it will be appended to the current archive.
131 As a simple example,
132 .Dl Nm Fl c Fl f Pa - Pa newfile Cm @ Ns Pa original.tar
133 writes a new archive to standard output containing a file
134 .Pa newfile
135 and all of the entries from
136 .Pa original.tar .
137 In contrast,
138 .Dl Nm Fl c Fl f Pa - Pa newfile Pa original.tar
139 creates a new archive with only two entries.
140 Similarly,
141 .Dl Nm Fl czf Pa - Fl Fl format Cm pax Cm @ Ns Pa -
142 reads an archive from standard input (whose format will be determined
143 automatically) and converts it into a gzip-compressed
144 pax-format archive on stdout.
145 In this way,
146 .Nm
147 can be used to convert archives from one format to another.
148 .It Fl a , Fl Fl auto-compress
149 (c mode only)
150 Use the archive suffix to decide a set of the format and
151 the compressions.
152 As a simple example,
153 .Dl Nm Fl a Fl cf Pa archive.tgz source.c source.h
154 creates a new archive with restricted pax format and gzip compression,
155 .Dl Nm Fl a Fl cf Pa archive.tar.bz2.uu source.c source.h
156 creates a new archive with restricted pax format and bzip2 compression
157 and uuencode compression,
158 .Dl Nm Fl a Fl cf Pa archive.zip source.c source.h
159 creates a new archive with zip format,
160 .Dl Nm Fl a Fl jcf Pa archive.tgz source.c source.h
161 ignores the
162 .Dq -j
163 option, and creates a new archive with restricted pax format
164 and gzip compression,
165 .Dl Nm Fl a Fl jcf Pa archive.xxx source.c source.h
166 if it is unknown suffix or no suffix, creates a new archive with
167 restricted pax format and bzip2 compression.
168 .It Fl Fl acls
169 (c, r, u, x modes only)
170 Archive or extract POSIX.1e or NFSv4 ACLs.
171 This is the reverse of
172 .Fl Fl no-acls
173 and the default behavior in c, r, and u modes (except on Mac OS X) or if
174 .Nm
175 is run in x mode as root.
176 On Mac OS X this option translates extended ACLs to NFSv4 ACLs.
177 To store extended ACLs the
178 .Fl Fl mac-metadata
179 option is preferred.
180 .It Fl B , Fl Fl read-full-blocks
181 Ignored for compatibility with other
182 .Xr tar 1
183 implementations.
184 .It Fl b Ar blocksize , Fl Fl block-size Ar blocksize
185 Specify the block size, in 512-byte records, for tape drive I/O.
186 As a rule, this argument is only needed when reading from or writing
187 to tape drives, and usually not even then as the default block size of
188 20 records (10240 bytes) is very common.
189 .It Fl C Ar directory , Fl Fl cd Ar directory , Fl Fl directory Ar directory
190 In c and r mode, this changes the directory before adding
191 the following files.
192 In x mode, change directories after opening the archive
193 but before extracting entries from the archive.
194 .It Fl Fl chroot
195 (x mode only)
196 .Fn chroot
197 to the current directory after processing any
198 .Fl C
199 options and before extracting any files.
200 .It Fl Fl clear-nochange-fflags
201 (x mode only)
202 Before removing file system objects to replace them, clear platform-specific
203 file attributes or file flags that might prevent removal.
204 .It Fl Fl exclude Ar pattern
205 Do not process files or directories that match the
206 specified pattern.
207 Note that exclusions take precedence over patterns or filenames
208 specified on the command line.
209 .It Fl Fl exclude-vcs
210 Do not process files or directories internally used by the
211 version control systems
212 .Sq CVS ,
213 .Sq RCS ,
214 .Sq SCCS ,
215 .Sq SVN ,
216 .Sq Arch ,
217 .Sq Bazaar ,
218 .Sq Mercurial
219 and
220 .Sq Darcs .
221 .It Fl Fl fflags
222 (c, r, u, x modes only)
223 Archive or extract platform-specific file attributes or file flags.
224 This is the reverse of
225 .Fl Fl no-fflags
226 and the default behavior in c, r, and u modes or if
227 .Nm
228 is run in x mode as root.
229 .It Fl Fl format Ar format
230 (c, r, u mode only)
231 Use the specified format for the created archive.
232 Supported formats include
233 .Dq cpio ,
234 .Dq pax ,
235 .Dq shar ,
236 and
237 .Dq ustar .
238 Other formats may also be supported; see
239 .Xr libarchive-formats 5
240 for more information about currently-supported formats.
241 In r and u modes, when extending an existing archive, the format specified
242 here must be compatible with the format of the existing archive on disk.
243 .It Fl f Ar file , Fl Fl file Ar file
244 Read the archive from or write the archive to the specified file.
245 The filename can be
246 .Pa -
247 for standard input or standard output.
248 The default varies by system;
249 on
250 .Fx ,
251 the default is
252 .Pa /dev/sa0 ;
253 on Linux, the default is
254 .Pa /dev/st0 .
255 .It Fl Fl gid Ar id
256 Use the provided group id number.
257 On extract, this overrides the group id in the archive;
258 the group name in the archive will be ignored.
259 On create, this overrides the group id read from disk;
260 if
261 .Fl Fl gname
262 is not also specified, the group name will be set to
263 match the group id.
264 .It Fl Fl gname Ar name
265 Use the provided group name.
266 On extract, this overrides the group name in the archive;
267 if the provided group name does not exist on the system,
268 the group id
269 (from the archive or from the
270 .Fl Fl gid
271 option)
272 will be used instead.
273 On create, this sets the group name that will be stored
274 in the archive;
275 the name will not be verified against the system group database.
276 .It Fl H
277 (c and r modes only)
278 Symbolic links named on the command line will be followed; the
279 target of the link will be archived, not the link itself.
280 .It Fl h
281 (c and r modes only)
282 Synonym for
283 .Fl L .
284 .It Fl I
285 Synonym for
286 .Fl T .
287 .It Fl Fl help
288 Show usage.
289 .It Fl Fl hfsCompression
290 (x mode only)
291 Mac OS X specific (v10.6 or later). Compress extracted regular files with HFS+
292 compression.
293 .It Fl Fl ignore-zeros
294 An alias of
295 .Fl Fl options Cm read_concatenated_archives
296 for compatibility with GNU tar.
297 .It Fl Fl include Ar pattern
298 Process only files or directories that match the specified pattern.
299 Note that exclusions specified with
300 .Fl Fl exclude
301 take precedence over inclusions.
302 If no inclusions are explicitly specified, all entries are processed by
303 default.
304 The
305 .Fl Fl include
306 option is especially useful when filtering archives.
307 For example, the command
308 .Dl Nm Fl c Fl f Pa new.tar Fl Fl include='*foo*' Cm @ Ns Pa old.tgz
309 creates a new archive
310 .Pa new.tar
311 containing only the entries from
312 .Pa old.tgz
313 containing the string
314 .Sq foo .
315 .It Fl J , Fl Fl xz
316 (c mode only)
317 Compress the resulting archive with
318 .Xr xz 1 .
319 In extract or list modes, this option is ignored.
320 Note that this
321 .Nm tar
322 implementation recognizes XZ compression automatically when reading archives.
323 .It Fl j , Fl Fl bzip , Fl Fl bzip2 , Fl Fl bunzip2
324 (c mode only)
325 Compress the resulting archive with
326 .Xr bzip2 1 .
327 In extract or list modes, this option is ignored.
328 Note that this
329 .Nm tar
330 implementation recognizes bzip2 compression automatically when reading
331 archives.
332 .It Fl k , Fl Fl keep-old-files
333 (x mode only)
334 Do not overwrite existing files.
335 In particular, if a file appears more than once in an archive,
336 later copies will not overwrite earlier copies.
337 .It Fl Fl keep-newer-files
338 (x mode only)
339 Do not overwrite existing files that are newer than the
340 versions appearing in the archive being extracted.
341 .It Fl L , Fl Fl dereference
342 (c and r modes only)
343 All symbolic links will be followed.
344 Normally, symbolic links are archived as such.
345 With this option, the target of the link will be archived instead.
346 .It Fl l , Fl Fl check-links
347 (c and r modes only)
348 Issue a warning message unless all links to each file are archived.
349 .It Fl Fl lrzip
350 (c mode only)
351 Compress the resulting archive with
352 .Xr lrzip 1 .
353 In extract or list modes, this option is ignored.
354 Note that this
355 .Nm tar
356 implementation recognizes lrzip compression automatically when reading
357 archives.
358 .It Fl Fl lz4
359 (c mode only)
360 Compress the archive with lz4-compatible compression before writing it.
361 In extract or list modes, this option is ignored.
362 Note that this
363 .Nm tar
364 implementation recognizes lz4 compression automatically when reading archives.
365 .It Fl Fl zstd
366 (c mode only)
367 Compress the archive with zstd-compatible compression before writing it.
368 In extract or list modes, this option is ignored.
369 Note that this
370 .Nm tar
371 implementation recognizes zstd compression automatically when reading archives.
372 .It Fl Fl lzma
373 (c mode only) Compress the resulting archive with the original LZMA algorithm.
374 In extract or list modes, this option is ignored.
375 Use of this option is discouraged and new archives should be created with
376 .Fl Fl xz
377 instead.
378 Note that this
379 .Nm tar
380 implementation recognizes LZMA compression automatically when reading archives.
381 .It Fl Fl lzop
382 (c mode only)
383 Compress the resulting archive with
384 .Xr lzop 1 .
385 In extract or list modes, this option is ignored.
386 Note that this
387 .Nm tar
388 implementation recognizes LZO compression automatically when reading archives.
389 .It Fl m , Fl Fl modification-time
390 (x mode only)
391 Do not extract modification time.
392 By default, the modification time is set to the time stored in the archive.
393 .It Fl Fl mac-metadata
394 (c, r, u and x mode only)
395 Mac OS X specific.
396 Archive or extract extended ACLs and extended file
397 attributes using
398 .Xr copyfile 3
399 in AppleDouble format.
400 This is the reverse of
401 .Fl Fl no-mac-metadata .
402 and the default behavior in c, r, and u modes or if
403 .Nm
404 is run in x mode as root.
405 .It Fl n , Fl Fl norecurse , Fl Fl no-recursion
406 Do not operate recursively on the content of directories.
407 .It Fl Fl newer Ar date
408 (c, r, u modes only)
409 Only include files and directories newer than the specified date.
410 This compares ctime entries.
411 .It Fl Fl newer-mtime Ar date
412 (c, r, u modes only)
413 Like
414 .Fl Fl newer ,
415 except it compares mtime entries instead of ctime entries.
416 .It Fl Fl newer-than Pa file
417 (c, r, u modes only)
418 Only include files and directories newer than the specified file.
419 This compares ctime entries.
420 .It Fl Fl newer-mtime-than Pa file
421 (c, r, u modes only)
422 Like
423 .Fl Fl newer-than ,
424 except it compares mtime entries instead of ctime entries.
425 .It Fl Fl nodump
426 (c and r modes only)
427 Honor the nodump file flag by skipping this file.
428 .It Fl Fl nopreserveHFSCompression
429 (x mode only)
430 Mac OS X specific (v10.6 or later). Do not compress extracted regular files
431 which were compressed with HFS+ compression before archived.
432 By default, compress the regular files again with HFS+ compression.
433 .It Fl Fl null
434 (use with
435 .Fl I
436 or
437 .Fl T )
438 Filenames or patterns are separated by null characters,
439 not by newlines.
440 This is often used to read filenames output by the
441 .Fl print0
442 option to
443 .Xr find 1 .
444 .It Fl Fl no-acls
445 (c, r, u, x modes only)
446 Do not archive or extract POSIX.1e or NFSv4 ACLs.
447 This is the reverse of
448 .Fl Fl acls
449 and the default behavior if
450 .Nm
451 is run as non-root in x mode (on Mac OS X as any user in c, r, u and x modes).
452 .It Fl Fl no-fflags
453 (c, r, u, x modes only)
454 Do not archive or extract file attributes or file flags.
455 This is the reverse of
456 .Fl Fl fflags
457 and the default behavior if
458 .Nm
459 is run as non-root in x mode.
460 .It Fl Fl no-mac-metadata
461 (x mode only)
462 Mac OS X specific.
463 Do not archive or extract ACLs and extended file attributes
464 using
465 .Xr copyfile 3
466 in AppleDouble format.
467 This is the reverse of
468 .Fl Fl mac-metadata .
469 and the default behavior if
470 .Nm
471 is run as non-root in x mode.
472 .It Fl Fl no-same-owner
473 (x mode only)
474 Do not extract owner and group IDs.
475 This is the reverse of
476 .Fl Fl same-owner
477 and the default behavior if
478 .Nm
479 is run as non-root.
480 .It Fl Fl no-same-permissions
481 (x mode only)
482 Do not extract full permissions (SGID, SUID, sticky bit,
483 file attributes or file flags, extended file attributes and ACLs).
484 This is the reverse of
485 .Fl p
486 and the default behavior if
487 .Nm
488 is run as non-root.
489 .It Fl Fl no-xattrs
490 (c, r, u, x modes only)
491 Do not archive or extract extended file attributes.
492 This is the reverse of
493 .Fl Fl xattrs
494 and the default behavior if
495 .Nm
496 is run as non-root in x mode.
497 .It Fl Fl numeric-owner
498 This is equivalent to
499 .Fl Fl uname
500 .Qq
501 .Fl Fl gname
502 .Qq .
503 On extract, it causes user and group names in the archive
504 to be ignored in favor of the numeric user and group ids.
505 On create, it causes user and group names to not be stored
506 in the archive.
507 .It Fl O , Fl Fl to-stdout
508 (x, t modes only)
509 In extract (-x) mode, files will be written to standard out rather than
510 being extracted to disk.
511 In list (-t) mode, the file listing will be written to stderr rather than
512 the usual stdout.
513 .It Fl o
514 (x mode)
515 Use the user and group of the user running the program rather
516 than those specified in the archive.
517 Note that this has no significance unless
518 .Fl p
519 is specified, and the program is being run by the root user.
520 In this case, the file modes and flags from
521 the archive will be restored, but ACLs or owner information in
522 the archive will be discarded.
523 .It Fl o
524 (c, r, u mode)
525 A synonym for
526 .Fl Fl format Ar ustar
527 .It Fl Fl older Ar date
528 (c, r, u modes only)
529 Only include files and directories older than the specified date.
530 This compares ctime entries.
531 .It Fl Fl older-mtime Ar date
532 (c, r, u modes only)
533 Like
534 .Fl Fl older ,
535 except it compares mtime entries instead of ctime entries.
536 .It Fl Fl older-than Pa file
537 (c, r, u modes only)
538 Only include files and directories older than the specified file.
539 This compares ctime entries.
540 .It Fl Fl older-mtime-than Pa file
541 (c, r, u modes only)
542 Like
543 .Fl Fl older-than ,
544 except it compares mtime entries instead of ctime entries.
545 .It Fl Fl one-file-system
546 (c, r, and u modes)
547 Do not cross mount points.
548 .It Fl Fl options Ar options
549 Select optional behaviors for particular modules.
550 The argument is a text string containing comma-separated
551 keywords and values.
552 These are passed to the modules that handle particular
553 formats to control how those formats will behave.
554 Each option has one of the following forms:
555 .Bl -tag -compact -width indent
556 .It Ar key=value
557 The key will be set to the specified value in every module that supports it.
558 Modules that do not support this key will ignore it.
559 .It Ar key
560 The key will be enabled in every module that supports it.
561 This is equivalent to
562 .Ar key Ns Cm =1 .
563 .It Ar !key
564 The key will be disabled in every module that supports it.
565 .It Ar module:key=value , Ar module:key , Ar module:!key
566 As above, but the corresponding key and value will be provided
567 only to modules whose name matches
568 .Ar module .
569 .El
570 The currently supported modules and keys are:
571 .Bl -tag -compact -width indent
572 .It Cm iso9660:joliet
573 Support Joliet extensions.
574 This is enabled by default, use
575 .Cm !joliet
576 or
577 .Cm iso9660:!joliet
578 to disable.
579 .It Cm iso9660:rockridge
580 Support Rock Ridge extensions.
581 This is enabled by default, use
582 .Cm !rockridge
583 or
584 .Cm iso9660:!rockridge
585 to disable.
586 .It Cm gzip:compression-level
587 A decimal integer from 1 to 9 specifying the gzip compression level.
588 .It Cm gzip:timestamp
589 Store timestamp.
590 This is enabled by default, use
591 .Cm !timestamp
592 or
593 .Cm gzip:!timestamp
594 to disable.
595 .It Cm lrzip:compression Ns = Ns Ar type
596 Use
597 .Ar type
598 as compression method.
599 Supported values are bzip2, gzip, lzo (ultra fast),
600 and zpaq (best, extremely slow).
601 .It Cm lrzip:compression-level
602 A decimal integer from 1 to 9 specifying the lrzip compression level.
603 .It Cm lz4:compression-level
604 A decimal integer from 1 to 9 specifying the lzop compression level.
605 .It Cm lz4:stream-checksum
606 Enable stream checksum.
607 This is by default, use
608 .Cm lz4:!stream-checksum
609 to disable.
610 .It Cm lz4:block-checksum
611 Enable block checksum (Disabled by default).
612 .It Cm lz4:block-size
613 A decimal integer from 4 to 7 specifying the lz4 compression block size
614 (7 is set by default).
615 .It Cm lz4:block-dependence
616 Use the previous block of the block being compressed for
617 a compression dictionary to improve compression ratio.
618 .It Cm zstd:compression-level
619 A decimal integer from 1 to 22 specifying the zstd compression level.
620 .It Cm lzop:compression-level
621 A decimal integer from 1 to 9 specifying the lzop compression level.
622 .It Cm xz:compression-level
623 A decimal integer from 0 to 9 specifying the xz compression level.
624 .It Cm mtree: Ns Ar keyword
625 The mtree writer module allows you to specify which mtree keywords
626 will be included in the output.
627 Supported keywords include:
628 .Cm cksum , Cm device , Cm flags , Cm gid , Cm gname , Cm indent ,
629 .Cm link , Cm md5 , Cm mode , Cm nlink , Cm rmd160 , Cm sha1 , Cm sha256 ,
630 .Cm sha384 , Cm sha512 , Cm size , Cm time , Cm uid , Cm uname .
631 The default is equivalent to:
632 .Dq device, flags, gid, gname, link, mode, nlink, size, time, type, uid, uname .
633 .It Cm mtree:all
634 Enables all of the above keywords.
635 You can also use
636 .Cm mtree:!all
637 to disable all keywords.
638 .It Cm mtree:use-set
639 Enable generation of
640 .Cm /set
641 lines in the output.
642 .It Cm mtree:indent
643 Produce human-readable output by indenting options and splitting lines
644 to fit into 80 columns.
645 .It Cm zip:compression Ns = Ns Ar type
646 Use
647 .Ar type
648 as compression method.
649 Supported values are store (uncompressed) and deflate (gzip algorithm).
650 .It Cm zip:encryption
651 Enable encryption using traditional zip encryption.
652 .It Cm zip:encryption Ns = Ns Ar type
653 Use
654 .Ar type
655 as encryption type.
656 Supported values are zipcrypt (traditional zip encryption),
657 aes128 (WinZip AES-128 encryption) and aes256 (WinZip AES-256 encryption).
658 .It Cm read_concatenated_archives
659 Ignore zeroed blocks in the archive, which occurs when multiple tar archives
660 have been concatenated together.
661 Without this option, only the contents of
662 the first concatenated archive would be read.
663 This option is comparable to the
664 .Fl i , Fl Fl ignore-zeros
665 option of GNU tar.
666 .El
667 If a provided option is not supported by any module, that
668 is a fatal error.
669 .It Fl P , Fl Fl absolute-paths
670 Preserve pathnames.
671 By default, absolute pathnames (those that begin with a /
672 character) have the leading slash removed both when creating archives
673 and extracting from them.
674 Also,
675 .Nm
676 will refuse to extract archive entries whose pathnames contain
677 .Pa ..
678 or whose target directory would be altered by a symlink.
679 This option suppresses these behaviors.
680 .It Fl p , Fl Fl insecure , Fl Fl preserve-permissions
681 (x mode only)
682 Preserve file permissions.
683 Attempt to restore the full permissions, including file modes, file attributes
684 or file flags, extended file attributes and ACLs, if available, for each item
685 extracted from the archive.
686 This is the reverse of
687 .Fl Fl no-same-permissions
688 and the default if
689 .Nm
690 is being run as root.
691 It can be partially overridden by also specifying
692 .Fl Fl no-acls ,
693 .Fl Fl no-fflags ,
694 .Fl Fl no-mac-metadata
695 or
696 .Fl Fl no-xattrs .
697 .It Fl Fl passphrase Ar passphrase
698 The
699 .Pa passphrase
700 is used to extract or create an encrypted archive.
701 Currently, zip is the only supported format that supports encryption.
702 You shouldn't use this option unless you realize how insecure
703 use of this option is.
704 .It Fl Fl posix
705 (c, r, u mode only)
706 Synonym for
707 .Fl Fl format Ar pax
708 .It Fl q , Fl Fl fast-read
709 (x and t mode only)
710 Extract or list only the first archive entry that matches each pattern
711 or filename operand.
712 Exit as soon as each specified pattern or filename has been matched.
713 By default, the archive is always read to the very end, since
714 there can be multiple entries with the same name and, by convention,
715 later entries overwrite earlier entries.
716 This option is provided as a performance optimization.
717 .It Fl S
718 (x mode only)
719 Extract files as sparse files.
720 For every block on disk, check first if it contains only NULL bytes and seek
721 over it otherwise.
722 This works similar to the conv=sparse option of dd.
723 .It Fl s Ar pattern
724 Modify file or archive member names according to
725 .Pa pattern .
726 The pattern has the format
727 .Ar /old/new/ Ns Op ghHprRsS
728 where
729 .Ar old
730 is a basic regular expression,
731 .Ar new
732 is the replacement string of the matched part,
733 and the optional trailing letters modify
734 how the replacement is handled.
735 If
736 .Ar old
737 is not matched, the pattern is skipped.
738 Within
739 .Ar new ,
740 ~ is substituted with the match, \e1 to \e9 with the content of
741 the corresponding captured group.
742 The optional trailing g specifies that matching should continue
743 after the matched part and stop on the first unmatched pattern.
744 The optional trailing s specifies that the pattern applies to the value
745 of symbolic links.
746 The optional trailing p specifies that after a successful substitution
747 the original path name and the new path name should be printed to
748 standard error.
749 Optional trailing H, R, or S characters suppress substitutions
750 for hardlink targets, regular filenames, or symlink targets,
751 respectively.
752 Optional trailing h, r, or s characters enable substitutions
753 for hardlink targets, regular filenames, or symlink targets,
754 respectively.
755 The default is
756 .Ar hrs
757 which applies substitutions to all names.
758 In particular, it is never necessary to specify h, r, or s.
759 .It Fl Fl same-owner
760 (x mode only)
761 Extract owner and group IDs.
762 This is the reverse of
763 .Fl Fl no-same-owner
764 and the default behavior if
765 .Nm
766 is run as root.
767 .It Fl Fl strip-components Ar count
768 Remove the specified number of leading path elements.
769 Pathnames with fewer elements will be silently skipped.
770 Note that the pathname is edited after checking inclusion/exclusion patterns
771 but before security checks.
772 .It Fl T Ar filename , Fl Fl files-from Ar filename
773 In x or t mode,
774 .Nm
775 will read the list of names to be extracted from
776 .Pa filename .
777 In c mode,
778 .Nm
779 will read names to be archived from
780 .Pa filename .
781 The special name
782 .Dq -C
783 on a line by itself will cause the current directory to be changed to
784 the directory specified on the following line.
785 Names are terminated by newlines unless
786 .Fl Fl null
787 is specified.
788 Note that
789 .Fl Fl null
790 also disables the special handling of lines containing
791 .Dq -C .
792 Note:  If you are generating lists of files using
793 .Xr find 1 ,
794 you probably want to use
795 .Fl n
796 as well.
797 .It Fl Fl totals
798 (c, r, u modes only)
799 After archiving all files, print a summary to stderr.
800 .It Fl U , Fl Fl unlink , Fl Fl unlink-first
801 (x mode only)
802 Unlink files before creating them.
803 This can be a minor performance optimization if most files
804 already exist, but can make things slower if most files
805 do not already exist.
806 This flag also causes
807 .Nm
808 to remove intervening directory symlinks instead of
809 reporting an error.
810 See the SECURITY section below for more details.
811 .It Fl Fl uid Ar id
812 Use the provided user id number and ignore the user
813 name from the archive.
814 On create, if
815 .Fl Fl uname
816 is not also specified, the user name will be set to
817 match the user id.
818 .It Fl Fl uname Ar name
819 Use the provided user name.
820 On extract, this overrides the user name in the archive;
821 if the provided user name does not exist on the system,
822 it will be ignored and the user id
823 (from the archive or from the
824 .Fl Fl uid
825 option)
826 will be used instead.
827 On create, this sets the user name that will be stored
828 in the archive;
829 the name is not verified against the system user database.
830 .It Fl Fl use-compress-program Ar program
831 Pipe the input (in x or t mode) or the output (in c mode) through
832 .Pa program
833 instead of using the builtin compression support.
834 .It Fl v , Fl Fl verbose
835 Produce verbose output.
836 In create and extract modes,
837 .Nm
838 will list each file name as it is read from or written to
839 the archive.
840 In list mode,
841 .Nm
842 will produce output similar to that of
843 .Xr ls 1 .
844 An additional
845 .Fl v
846 option will also provide ls-like details in create and extract mode.
847 .It Fl Fl version
848 Print version of
849 .Nm
850 and
851 .Nm libarchive ,
852 and exit.
853 .It Fl w , Fl Fl confirmation , Fl Fl interactive
854 Ask for confirmation for every action.
855 .It Fl X Ar filename , Fl Fl exclude-from Ar filename
856 Read a list of exclusion patterns from the specified file.
857 See
858 .Fl Fl exclude
859 for more information about the handling of exclusions.
860 .It Fl Fl xattrs
861 (c, r, u, x modes only)
862 Archive or extract extended file attributes.
863 This is the reverse of
864 .Fl Fl no-xattrs
865 and the default behavior in c, r, and u modes or if
866 .Nm
867 is run in x mode as root.
868 .It Fl y
869 (c mode only)
870 Compress the resulting archive with
871 .Xr bzip2 1 .
872 In extract or list modes, this option is ignored.
873 Note that this
874 .Nm tar
875 implementation recognizes bzip2 compression automatically when reading
876 archives.
877 .It Fl Z , Fl Fl compress , Fl Fl uncompress
878 (c mode only)
879 Compress the resulting archive with
880 .Xr compress 1 .
881 In extract or list modes, this option is ignored.
882 Note that this
883 .Nm tar
884 implementation recognizes compress compression automatically when reading
885 archives.
886 .It Fl z , Fl Fl gunzip , Fl Fl gzip
887 (c mode only)
888 Compress the resulting archive with
889 .Xr gzip 1 .
890 In extract or list modes, this option is ignored.
891 Note that this
892 .Nm tar
893 implementation recognizes gzip compression automatically when reading
894 archives.
895 .El
896 .Sh ENVIRONMENT
897 The following environment variables affect the execution of
898 .Nm :
899 .Bl -tag -width ".Ev BLOCKSIZE"
900 .It Ev TAR_READER_OPTIONS
901 The default options for format readers and compression readers.
902 The
903 .Fl Fl options
904 option overrides this.
905 .It Ev TAR_WRITER_OPTIONS
906 The default options for format writers and compression writers.
907 The
908 .Fl Fl options
909 option overrides this.
910 .It Ev LANG
911 The locale to use.
912 See
913 .Xr environ 7
914 for more information.
915 .It Ev TAPE
916 The default device.
917 The
918 .Fl f
919 option overrides this.
920 Please see the description of the
921 .Fl f
922 option above for more details.
923 .It Ev TZ
924 The timezone to use when displaying dates.
925 See
926 .Xr environ 7
927 for more information.
928 .El
929 .Sh EXIT STATUS
930 .Ex -std
931 .Sh EXAMPLES
932 The following creates a new archive
933 called
934 .Ar file.tar.gz
935 that contains two files
936 .Ar source.c
937 and
938 .Ar source.h :
939 .Dl Nm Fl czf Pa file.tar.gz Pa source.c Pa source.h
940 .Pp
941 To view a detailed table of contents for this
942 archive:
943 .Dl Nm Fl tvf Pa file.tar.gz
944 .Pp
945 To extract all entries from the archive on
946 the default tape drive:
947 .Dl Nm Fl x
948 .Pp
949 To examine the contents of an ISO 9660 cdrom image:
950 .Dl Nm Fl tf Pa image.iso
951 .Pp
952 To move file hierarchies, invoke
953 .Nm
954 as
955 .Dl Nm Fl cf Pa - Fl C Pa srcdir \&. | Nm Fl xpf Pa - Fl C Pa destdir
956 or more traditionally
957 .Dl cd srcdir \&; Nm Fl cf Pa - \&. | ( cd destdir \&; Nm Fl xpf Pa - )
958 .Pp
959 In create mode, the list of files and directories to be archived
960 can also include directory change instructions of the form
961 .Cm -C Ns Pa foo/baz
962 and archive inclusions of the form
963 .Cm @ Ns Pa archive-file .
964 For example, the command line
965 .Dl Nm Fl c Fl f Pa new.tar Pa foo1 Cm @ Ns Pa old.tgz Cm -C Ns Pa /tmp Pa foo2
966 will create a new archive
967 .Pa new.tar .
968 .Nm
969 will read the file
970 .Pa foo1
971 from the current directory and add it to the output archive.
972 It will then read each entry from
973 .Pa old.tgz
974 and add those entries to the output archive.
975 Finally, it will switch to the
976 .Pa /tmp
977 directory and add
978 .Pa foo2
979 to the output archive.
980 .Pp
981 An input file in
982 .Xr mtree 5
983 format can be used to create an output archive with arbitrary ownership,
984 permissions, or names that differ from existing data on disk:
985 .Bd -literal -offset indent
986 $ cat input.mtree
987 #mtree
988 usr/bin uid=0 gid=0 mode=0755 type=dir
989 usr/bin/ls uid=0 gid=0 mode=0755 type=file content=myls
990 $ tar -cvf output.tar @input.mtree
991 .Ed
992 .Pp
993 The
994 .Fl Fl newer
995 and
996 .Fl Fl newer-mtime
997 switches accept a variety of common date and time specifications, including
998 .Dq 12 Mar 2005 7:14:29pm ,
999 .Dq 2005-03-12 19:14 ,
1000 .Dq 5 minutes ago ,
1001 and
1002 .Dq 19:14 PST May 1 .
1003 .Pp
1004 The
1005 .Fl Fl options
1006 argument can be used to control various details of archive generation
1007 or reading.
1008 For example, you can generate mtree output which only contains
1009 .Cm type , Cm time ,
1010 and
1011 .Cm uid
1012 keywords:
1013 .Dl Nm Fl cf Pa file.tar Fl Fl format=mtree Fl Fl options='!all,type,time,uid' Pa dir
1014 or you can set the compression level used by gzip or xz compression:
1015 .Dl Nm Fl czf Pa file.tar Fl Fl options='compression-level=9' .
1016 For more details, see the explanation of the
1017 .Fn archive_read_set_options
1018 and
1019 .Fn archive_write_set_options
1020 API calls that are described in
1021 .Xr archive_read 3
1022 and
1023 .Xr archive_write 3 .
1024 .Sh COMPATIBILITY
1025 The bundled-arguments format is supported for compatibility
1026 with historic implementations.
1027 It consists of an initial word (with no leading - character) in which
1028 each character indicates an option.
1029 Arguments follow as separate words.
1030 The order of the arguments must match the order
1031 of the corresponding characters in the bundled command word.
1032 For example,
1033 .Dl Nm Cm tbf 32 Pa file.tar
1034 specifies three flags
1035 .Cm t ,
1036 .Cm b ,
1037 and
1038 .Cm f .
1039 The
1040 .Cm b
1041 and
1042 .Cm f
1043 flags both require arguments,
1044 so there must be two additional items
1045 on the command line.
1046 The
1047 .Ar 32
1048 is the argument to the
1049 .Cm b
1050 flag, and
1051 .Ar file.tar
1052 is the argument to the
1053 .Cm f
1054 flag.
1055 .Pp
1056 The mode options c, r, t, u, and x and the options
1057 b, f, l, m, o, v, and w comply with SUSv2.
1058 .Pp
1059 For maximum portability, scripts that invoke
1060 .Nm tar
1061 should use the bundled-argument format above, should limit
1062 themselves to the
1063 .Cm c ,
1064 .Cm t ,
1065 and
1066 .Cm x
1067 modes, and the
1068 .Cm b ,
1069 .Cm f ,
1070 .Cm m ,
1071 .Cm v ,
1072 and
1073 .Cm w
1074 options.
1075 .Pp
1076 Additional long options are provided to improve compatibility with other
1077 tar implementations.
1078 .Sh SECURITY
1079 Certain security issues are common to many archiving programs, including
1080 .Nm .
1081 In particular, carefully-crafted archives can request that
1082 .Nm
1083 extract files to locations outside of the target directory.
1084 This can potentially be used to cause unwitting users to overwrite
1085 files they did not intend to overwrite.
1086 If the archive is being extracted by the superuser, any file
1087 on the system can potentially be overwritten.
1088 There are three ways this can happen.
1089 Although
1090 .Nm
1091 has mechanisms to protect against each one,
1092 savvy users should be aware of the implications:
1093 .Bl -bullet -width indent
1094 .It
1095 Archive entries can have absolute pathnames.
1096 By default,
1097 .Nm
1098 removes the leading
1099 .Pa /
1100 character from filenames before restoring them to guard against this problem.
1101 .It
1102 Archive entries can have pathnames that include
1103 .Pa ..
1104 components.
1105 By default,
1106 .Nm
1107 will not extract files containing
1108 .Pa ..
1109 components in their pathname.
1110 .It
1111 Archive entries can exploit symbolic links to restore
1112 files to other directories.
1113 An archive can restore a symbolic link to another directory,
1114 then use that link to restore a file into that directory.
1115 To guard against this,
1116 .Nm
1117 checks each extracted path for symlinks.
1118 If the final path element is a symlink, it will be removed
1119 and replaced with the archive entry.
1120 If
1121 .Fl U
1122 is specified, any intermediate symlink will also be unconditionally removed.
1123 If neither
1124 .Fl U
1125 nor
1126 .Fl P
1127 is specified,
1128 .Nm
1129 will refuse to extract the entry.
1130 .El
1131 To protect yourself, you should be wary of any archives that
1132 come from untrusted sources.
1133 You should examine the contents of an archive with
1134 .Dl Nm Fl tf Pa filename
1135 before extraction.
1136 You should use the
1137 .Fl k
1138 option to ensure that
1139 .Nm
1140 will not overwrite any existing files or the
1141 .Fl U
1142 option to remove any pre-existing files.
1143 You should generally not extract archives while running with super-user
1144 privileges.
1145 Note that the
1146 .Fl P
1147 option to
1148 .Nm
1149 disables the security checks above and allows you to extract
1150 an archive while preserving any absolute pathnames,
1151 .Pa ..
1152 components, or symlinks to other directories.
1153 .Sh SEE ALSO
1154 .Xr bzip2 1 ,
1155 .Xr compress 1 ,
1156 .Xr cpio 1 ,
1157 .Xr gzip 1 ,
1158 .Xr mt 1 ,
1159 .Xr pax 1 ,
1160 .Xr shar 1 ,
1161 .Xr xz 1 ,
1162 .Xr libarchive 3 ,
1163 .Xr libarchive-formats 5 ,
1164 .Xr tar 5
1165 .Sh STANDARDS
1166 There is no current POSIX standard for the tar command; it appeared
1167 in
1168 .St -p1003.1-96
1169 but was dropped from
1170 .St -p1003.1-2001 .
1171 The options supported by this implementation were developed by surveying a
1172 number of existing tar implementations as well as the old POSIX specification
1173 for tar and the current POSIX specification for pax.
1174 .Pp
1175 The ustar and pax interchange file formats are defined by
1176 .St -p1003.1-2001
1177 for the pax command.
1178 .Sh HISTORY
1179 A
1180 .Nm tar
1181 command appeared in Seventh Edition Unix, which was released in January, 1979.
1182 There have been numerous other implementations,
1183 many of which extended the file format.
1184 John Gilmore's
1185 .Nm pdtar
1186 public-domain implementation (circa November, 1987)
1187 was quite influential, and formed the basis of GNU tar.
1188 GNU tar was included as the standard system tar
1189 in
1190 .Fx
1191 beginning with
1192 .Fx 1.0 .
1193 .Pp
1194 This is a complete re-implementation based on the
1195 .Xr libarchive 3
1196 library.
1197 It was first released with
1198 .Fx 5.4
1199 in May, 2005.
1200 .Sh BUGS
1201 This program follows
1202 .St -p1003.1-96
1203 for the definition of the
1204 .Fl l
1205 option.
1206 Note that GNU tar prior to version 1.15 treated
1207 .Fl l
1208 as a synonym for the
1209 .Fl Fl one-file-system
1210 option.
1211 .Pp
1212 The
1213 .Fl C Pa dir
1214 option may differ from historic implementations.
1215 .Pp
1216 All archive output is written in correctly-sized blocks, even
1217 if the output is being compressed.
1218 Whether or not the last output block is padded to a full
1219 block size varies depending on the format and the
1220 output device.
1221 For tar and cpio formats, the last block of output is padded
1222 to a full block size if the output is being
1223 written to standard output or to a character or block device such as
1224 a tape drive.
1225 If the output is being written to a regular file, the last block
1226 will not be padded.
1227 Many compressors, including
1228 .Xr gzip 1
1229 and
1230 .Xr bzip2 1 ,
1231 complain about the null padding when decompressing an archive created by
1232 .Nm ,
1233 although they still extract it correctly.
1234 .Pp
1235 The compression and decompression is implemented internally, so
1236 there may be insignificant differences between the compressed output
1237 generated by
1238 .Dl Nm Fl czf Pa - file
1239 and that generated by
1240 .Dl Nm Fl cf Pa - file | Nm gzip
1241 .Pp
1242 The default should be to read and write archives to the standard I/O paths,
1243 but tradition (and POSIX) dictates otherwise.
1244 .Pp
1245 The
1246 .Cm r
1247 and
1248 .Cm u
1249 modes require that the archive be uncompressed
1250 and located in a regular file on disk.
1251 Other archives can be modified using
1252 .Cm c
1253 mode with the
1254 .Pa @archive-file
1255 extension.
1256 .Pp
1257 To archive a file called
1258 .Pa @foo
1259 or
1260 .Pa -foo
1261 you must specify it as
1262 .Pa ./@foo
1263 or
1264 .Pa ./-foo ,
1265 respectively.
1266 .Pp
1267 In create mode, a leading
1268 .Pa ./
1269 is always removed.
1270 A leading
1271 .Pa /
1272 is stripped unless the
1273 .Fl P
1274 option is specified.
1275 .Pp
1276 There needs to be better support for file selection on both create
1277 and extract.
1278 .Pp
1279 There is not yet any support for multi-volume archives.
1280 .Pp
1281 Converting between dissimilar archive formats (such as tar and cpio) using the
1282 .Cm @ Ns Pa -
1283 convention can cause hard link information to be lost.
1284 (This is a consequence of the incompatible ways that different archive
1285 formats store hardlink information.)