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.46 2008/12/06 07:37:55 kientzle Exp $ 26.\" 27.Dd Oct 12, 2009 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 | Ar directories 41.Nm 42.Brq Fl r | Fl u 43.Fl f Ar archive-file 44.Op Ar options 45.Op Ar files | Ar directories 46.Nm 47.Brq Fl t | Fl x 48.Op Ar options 49.Op Ar patterns 50.Sh DESCRIPTION 51.Nm 52creates and manipulates streaming archive files. 53This implementation can extract from tar, pax, cpio, zip, jar, ar, 54and ISO 9660 cdrom images and can create tar, pax, cpio, ar, 55and shar archives. 56.Pp 57The first synopsis form shows a 58.Dq bundled 59option word. 60This usage is provided for compatibility with historical implementations. 61See COMPATIBILITY below for details. 62.Pp 63The other synopsis forms show the preferred usage. 64The first option to 65.Nm 66is a mode indicator from the following list: 67.Bl -tag -compact -width indent 68.It Fl c 69Create a new archive containing the specified items. 70.It Fl r 71Like 72.Fl c , 73but new entries are appended to the archive. 74Note that this only works on uncompressed archives stored in regular files. 75The 76.Fl f 77option is required. 78.It Fl t 79List archive contents to stdout. 80.It Fl u 81Like 82.Fl r , 83but new entries are added only if they have a modification date 84newer than the corresponding entry in the archive. 85Note that this only works on uncompressed archives stored in regular files. 86The 87.Fl f 88option is required. 89.It Fl x 90Extract to disk from the archive. 91If a file with the same name appears more than once in the archive, 92each copy will be extracted, with later copies overwriting (replacing) 93earlier copies. 94.El 95.Pp 96In 97.Fl c , 98.Fl r , 99or 100.Fl u 101mode, each specified file or directory is added to the 102archive in the order specified on the command line. 103By default, the contents of each directory are also archived. 104.Pp 105In extract or list mode, the entire command line 106is read and parsed before the archive is opened. 107The pathnames or patterns on the command line indicate 108which items in the archive should be processed. 109Patterns are shell-style globbing patterns as 110documented in 111.Xr tcsh 1 . 112.Sh OPTIONS 113Unless specifically stated otherwise, options are applicable in 114all operating modes. 115.Bl -tag -width indent 116.It Cm @ Ns Pa archive 117(c and r mode only) 118The specified archive is opened and the entries 119in it will be appended to the current archive. 120As a simple example, 121.Dl Nm Fl c Fl f Pa - Pa newfile Cm @ Ns Pa original.tar 122writes a new archive to standard output containing a file 123.Pa newfile 124and all of the entries from 125.Pa original.tar . 126In contrast, 127.Dl Nm Fl c Fl f Pa - Pa newfile Pa original.tar 128creates a new archive with only two entries. 129Similarly, 130.Dl Nm Fl czf Pa - Fl -format Cm pax Cm @ Ns Pa - 131reads an archive from standard input (whose format will be determined 132automatically) and converts it into a gzip-compressed 133pax-format archive on stdout. 134In this way, 135.Nm 136can be used to convert archives from one format to another. 137.It Fl b Ar blocksize 138Specify the block size, in 512-byte records, for tape drive I/O. 139As a rule, this argument is only needed when reading from or writing 140to tape drives, and usually not even then as the default block size of 14120 records (10240 bytes) is very common. 142.It Fl C Ar directory 143In c and r mode, this changes the directory before adding 144the following files. 145In x mode, change directories after opening the archive 146but before extracting entries from the archive. 147.It Fl -check-links 148(c and r modes only) 149Issue a warning message unless all links to each file are archived. 150.It Fl -chroot 151(x mode only) 152.Fn chroot 153to the current directory after processing any 154.Fl C 155options and before extracting any files. 156.It Fl -exclude Ar pattern 157Do not process files or directories that match the 158specified pattern. 159Note that exclusions take precedence over patterns or filenames 160specified on the command line. 161.It Fl -format Ar format 162(c, r, u mode only) 163Use the specified format for the created archive. 164Supported formats include 165.Dq cpio , 166.Dq pax , 167.Dq shar , 168and 169.Dq ustar . 170Other formats may also be supported; see 171.Xr libarchive-formats 5 172for more information about currently-supported formats. 173In r and u modes, when extending an existing archive, the format specified 174here must be compatible with the format of the existing archive on disk. 175.It Fl f Ar file 176Read the archive from or write the archive to the specified file. 177The filename can be 178.Pa - 179for standard input or standard output. 180If not specified, the default tape device will be used. 181(On 182.Fx , 183the default tape device is 184.Pa /dev/sa0 . ) 185.It Fl H 186(c and r mode only) 187Symbolic links named on the command line will be followed; the 188target of the link will be archived, not the link itself. 189.It Fl h 190(c and r mode only) 191Synonym for 192.Fl L . 193.It Fl I 194Synonym for 195.Fl T . 196.It Fl -include Ar pattern 197Process only files or directories that match the specified pattern. 198Note that exclusions specified with 199.Fl -exclude 200take precedence over inclusions. 201If no inclusions are explicitly specified, all entries are processed by 202default. 203The 204.Fl -include 205option is especially useful when filtering archives. 206For example, the command 207.Dl Nm Fl c Fl f Pa new.tar Fl -include='*foo*' Cm @ Ns Pa old.tgz 208creates a new archive 209.Pa new.tar 210containing only the entries from 211.Pa old.tgz 212containing the string 213.Sq foo . 214.It Fl j 215(c mode only) 216Compress the resulting archive with 217.Xr bzip2 1 . 218In extract or list modes, this option is ignored. 219Note that, unlike other 220.Nm tar 221implementations, this implementation recognizes bzip2 compression 222automatically when reading archives. 223.It Fl k 224(x mode only) 225Do not overwrite existing files. 226In particular, if a file appears more than once in an archive, 227later copies will not overwrite earlier copies. 228.It Fl -keep-newer-files 229(x mode only) 230Do not overwrite existing files that are newer than the 231versions appearing in the archive being extracted. 232.It Fl L 233(c and r mode only) 234All symbolic links will be followed. 235Normally, symbolic links are archived as such. 236With this option, the target of the link will be archived instead. 237.It Fl l 238This is a synonym for the 239.Fl -check-links 240option. 241.It Fl m 242(x mode only) 243Do not extract modification time. 244By default, the modification time is set to the time stored in the archive. 245.It Fl n 246(c, r, u modes only) 247Do not recursively archive the contents of directories. 248.It Fl -newer Ar date 249(c, r, u modes only) 250Only include files and directories newer than the specified date. 251This compares ctime entries. 252.It Fl -newer-mtime Ar date 253(c, r, u modes only) 254Like 255.Fl -newer , 256except it compares mtime entries instead of ctime entries. 257.It Fl -newer-than Pa file 258(c, r, u modes only) 259Only include files and directories newer than the specified file. 260This compares ctime entries. 261.It Fl -newer-mtime-than Pa file 262(c, r, u modes only) 263Like 264.Fl -newer-than , 265except it compares mtime entries instead of ctime entries. 266.It Fl -nodump 267(c and r modes only) 268Honor the nodump file flag by skipping this file. 269.It Fl -null 270(use with 271.Fl I , 272.Fl T , 273or 274.Fl X ) 275Filenames or patterns are separated by null characters, 276not by newlines. 277This is often used to read filenames output by the 278.Fl print0 279option to 280.Xr find 1 . 281.It Fl -numeric-owner 282(x mode only) 283Ignore symbolic user and group names when restoring archives to disk, 284only numeric uid and gid values will be obeyed. 285.It Fl O 286(x, t modes only) 287In extract (-x) mode, files will be written to standard out rather than 288being extracted to disk. 289In list (-t) mode, the file listing will be written to stderr rather than 290the usual stdout. 291.It Fl o 292(x mode) 293Use the user and group of the user running the program rather 294than those specified in the archive. 295Note that this has no significance unless 296.Fl p 297is specified, and the program is being run by the root user. 298In this case, the file modes and flags from 299the archive will be restored, but ACLs or owner information in 300the archive will be discarded. 301.It Fl o 302(c, r, u mode) 303A synonym for 304.Fl -format Ar ustar 305.It Fl -one-file-system 306(c, r, and u modes) 307Do not cross mount points. 308.It Fl -options Ar options 309Select optional behaviors for particular modules. 310The argument is a text string containing comma-separated 311keywords and values. 312These are passed to the modules that handle particular 313formats to control how those formats will behave. 314Each option has one of the following forms: 315.Bl -tag -compact -width indent 316.It Ar key=value 317The key will be set to the specified value in every module that supports it. 318Modules that do not support this key will ignore it. 319.It Ar key 320The key will be enabled in every module that supports it. 321This is equivalent to 322.Ar key Ns Cm =1 . 323.It Ar !key 324The key will be disabled in every module that supports it. 325.It Ar module:key=value , Ar module:key , Ar module:!key 326As above, but the corresponding key and value will be provided 327only to modules whose name matches 328.Ar module . 329.El 330The currently supported modules and keys are: 331.Bl -tag -compact -width indent 332.It Cm iso9660:joliet 333Support Joliet extensions. 334This is enabled by default, use 335.Cm !joliet 336or 337.Cm iso9660:!joliet 338to disable. 339.It Cm iso9660:rockridge 340Support Rock Ridge extensions. 341This is enabled by default, use 342.Cm !rockridge 343or 344.Cm iso9660:!rockridge 345to disable. 346.It Cm gzip:compression-level 347A decimal integer from 0 to 9 specifying the gzip compression level. 348.It Cm xz:compression-level 349A decimal integer from 0 to 9 specifying the xz compression level. 350.It Cm mtree: Ns Ar keyword 351The mtree writer module allows you to specify which mtree keywords 352will be included in the output. 353Supported keywords include: 354.Cm cksum , Cm device , Cm flags , Cm gid , Cm gname , Cm indent , 355.Cm link , Cm md5 , Cm mode , Cm nlink , Cm rmd160 , Cm sha1 , Cm sha256 , 356.Cm sha384 , Cm sha512 , Cm size , Cm time , Cm uid , Cm uname . 357The default is equivalent to: 358.Dq device, flags, gid, gname, link, mode, nlink, size, time, type, uid, uname . 359.It Cm mtree:all 360Enables all of the above keywords. 361You can also use 362.Cm mtree:!all 363to disable all keywords. 364.It Cm mtree:use-set 365Enable generation of 366.Cm /set 367lines in the output. 368.It Cm mtree:indent 369Produce human-readable output by indenting options and splitting lines 370to fit into 80 columns. 371.It Cm zip:compression Ns = Ns Ar type 372Use 373.Ar type 374as compression method. 375Supported values are store (uncompressed) and deflate (gzip algorithm). 376.El 377If a provided option is not supported by any module, that 378is a fatal error. 379.It Fl P 380Preserve pathnames. 381By default, absolute pathnames (those that begin with a / 382character) have the leading slash removed both when creating archives 383and extracting from them. 384Also, 385.Nm 386will refuse to extract archive entries whose pathnames contain 387.Pa .. 388or whose target directory would be altered by a symlink. 389This option suppresses these behaviors. 390.It Fl p 391(x mode only) 392Preserve file permissions. 393Attempt to restore the full permissions, including owner, file modes, file 394flags and ACLs, if available, for each item extracted from the archive. 395By default, newly-created files are owned by the user running 396.Nm , 397the file mode is restored for newly-created regular files, and 398all other types of entries receive default permissions. 399If 400.Nm 401is being run by root, the default is to restore the owner unless the 402.Fl o 403option is also specified. 404.It Fl q ( Fl -fast-read ) 405(x and t mode only) 406Extract or list only the first archive entry that matches each pattern 407or filename operand. 408Exit as soon as each specified pattern or filename has been matched. 409By default, the archive is always read to the very end, since 410there can be multiple entries with the same name and, by convention, 411later entries overwrite earlier entries. 412This option is provided as a performance optimization. 413.It Fl S 414(x mode only) 415Extract files as sparse files. 416For every block on disk, check first if it contains only NULL bytes and seek 417over it otherwise. 418This works similiar to the conv=sparse option of dd. 419.It Fl -strip-components Ar count 420(x mode only) 421Remove the specified number of leading path elements. 422Pathnames with fewer elements will be silently skipped. 423Note that the pathname is edited after checking inclusion/exclusion patterns 424but before security checks. 425.It Fl s Ar pattern 426Modify file or archive member names according to 427.Pa pattern . 428The pattern has the format 429.Ar /old/new/ Ns Op gps 430where 431.Ar old 432is a basic regular expression, 433.Ar new 434is the replacement string of the matched part, 435and the optional trailing letters modify 436how the replacement is handled. 437If 438.Ar old 439is not matched, the pattern is skipped. 440Within 441.Ar new , 442~ is substituted with the match, \e1 to \e9 with the content of 443the corresponding captured group. 444The optional trailing g specifies that matching should continue 445after the matched part and stopped on the first unmatched pattern. 446The optional trailing s specifies that the pattern applies to the value 447of symbolic links. 448The optional trailing p specifies that after a successful substitution 449the original path name and the new path name should be printed to 450standard error. 451.It Fl T Ar filename 452In x or t mode, 453.Nm 454will read the list of names to be extracted from 455.Pa filename . 456In c mode, 457.Nm 458will read names to be archived from 459.Pa filename . 460The special name 461.Dq -C 462on a line by itself will cause the current directory to be changed to 463the directory specified on the following line. 464Names are terminated by newlines unless 465.Fl -null 466is specified. 467Note that 468.Fl -null 469also disables the special handling of lines containing 470.Dq -C . 471.It Fl U 472(x mode only) 473Unlink files before creating them. 474Without this option, 475.Nm 476overwrites existing files, which preserves existing hardlinks. 477With this option, existing hardlinks will be broken, as will any 478symlink that would affect the location of an extracted file. 479.It Fl -use-compress-program Ar program 480Pipe the input (in x or t mode) or the output (in c mode) through 481.Pa program 482instead of using the builtin compression support. 483.It Fl v 484Produce verbose output. 485In create and extract modes, 486.Nm 487will list each file name as it is read from or written to 488the archive. 489In list mode, 490.Nm 491will produce output similar to that of 492.Xr ls 1 . 493Additional 494.Fl v 495options will provide additional detail. 496.It Fl -version 497Print version of 498.Nm 499and 500.Nm libarchive , 501and exit. 502.It Fl w 503Ask for confirmation for every action. 504.It Fl X Ar filename 505Read a list of exclusion patterns from the specified file. 506See 507.Fl -exclude 508for more information about the handling of exclusions. 509.It Fl y 510(c mode only) 511Compress the resulting archive with 512.Xr bzip2 1 . 513In extract or list modes, this option is ignored. 514Note that, unlike other 515.Nm tar 516implementations, this implementation recognizes bzip2 compression 517automatically when reading archives. 518.It Fl z 519(c mode only) 520Compress the resulting archive with 521.Xr gzip 1 . 522In extract or list modes, this option is ignored. 523Note that, unlike other 524.Nm tar 525implementations, this implementation recognizes gzip compression 526automatically when reading archives. 527.It Fl Z 528(c mode only) 529Compress the resulting archive with 530.Xr compress 1 . 531In extract or list modes, this option is ignored. 532Note that, unlike other 533.Nm tar 534implementations, this implementation recognizes compress compression 535automatically when reading archives. 536.El 537.Sh EXIT STATUS 538.Ex -std 539.Sh ENVIRONMENT 540The following environment variables affect the execution of 541.Nm : 542.Bl -tag -width ".Ev BLOCKSIZE" 543.It Ev LANG 544The locale to use. 545See 546.Xr environ 7 547for more information. 548.It Ev TAPE 549The default tape device. 550The 551.Fl f 552option overrides this. 553.It Ev TZ 554The timezone to use when displaying dates. 555See 556.Xr environ 7 557for more information. 558.El 559.Sh FILES 560.Bl -tag -width ".Ev BLOCKSIZE" 561.It Pa /dev/sa0 562The default tape device, if not overridden by the 563.Ev TAPE 564environment variable or the 565.Fl f 566option. 567.El 568.Sh EXAMPLES 569The following creates a new archive 570called 571.Ar file.tar.gz 572that contains two files 573.Ar source.c 574and 575.Ar source.h : 576.Dl Nm Fl czf Pa file.tar.gz Pa source.c Pa source.h 577.Pp 578To view a detailed table of contents for this 579archive: 580.Dl Nm Fl tvf Pa file.tar.gz 581.Pp 582To extract all entries from the archive on 583the default tape drive: 584.Dl Nm Fl x 585.Pp 586To examine the contents of an ISO 9660 cdrom image: 587.Dl Nm Fl tf Pa image.iso 588.Pp 589To move file hierarchies, invoke 590.Nm 591as 592.Dl Nm Fl cf Pa - Fl C Pa srcdir\ . | Nm Fl xpf Pa - Fl C Pa destdir 593or more traditionally 594.Dl cd srcdir \&; Nm Fl cf Pa -\ . | ( cd destdir \&; Nm Fl xpf Pa - ) 595.Pp 596In create mode, the list of files and directories to be archived 597can also include directory change instructions of the form 598.Cm -C Ns Pa foo/baz 599and archive inclusions of the form 600.Cm @ Ns Pa archive-file . 601For example, the command line 602.Dl Nm Fl c Fl f Pa new.tar Pa foo1 Cm @ Ns Pa old.tgz Cm -C Ns Pa /tmp Pa foo2 603will create a new archive 604.Pa new.tar . 605.Nm 606will read the file 607.Pa foo1 608from the current directory and add it to the output archive. 609It will then read each entry from 610.Pa old.tgz 611and add those entries to the output archive. 612Finally, it will switch to the 613.Pa /tmp 614directory and add 615.Pa foo2 616to the output archive. 617.Pp 618An input file in 619.Xr mtree 5 620format can be used to create an output archive with arbitrary ownership, 621permissions, or names that differ from existing data on disk: 622.Pp 623.Dl $ cat input.mtree 624.Dl #mtree 625.Dl usr/bin uid=0 gid=0 mode=0755 type=dir 626.Dl usr/bin/ls uid=0 gid=0 mode=0755 type=file content=myls 627.Dl $ tar -cvf output.tar @input.mtree 628.Pp 629The 630.Fl -newer 631and 632.Fl -newer-mtime 633switches accept a variety of common date and time specifications, including 634.Dq 12 Mar 2005 7:14:29pm , 635.Dq 2005-03-12 19:14 , 636.Dq 5 minutes ago , 637and 638.Dq 19:14 PST May 1 . 639.Pp 640The 641.Fl -options 642argument can be used to control various details of archive generation 643or reading. 644For example, you can generate mtree output which only contains 645.Cm type , Cm time , 646and 647.Cm uid 648keywords: 649.Dl Nm Fl cf Pa file.tar Fl -format=mtree Fl -options='!all,type,time,uid' Pa dir 650or you can set the compression level used by gzip or xz compression: 651.Dl Nm Fl czf Pa file.tar Fl -options='compression-level=9' . 652For more details, see the explanation of the 653.Fn archive_read_set_options 654and 655.Fn archive_write_set_options 656API calls that are described in 657.Xr archive_read 3 658and 659.Xr archive_write 3 . 660.Sh COMPATIBILITY 661The bundled-arguments format is supported for compatibility 662with historic implementations. 663It consists of an initial word (with no leading - character) in which 664each character indicates an option. 665Arguments follow as separate words. 666The order of the arguments must match the order 667of the corresponding characters in the bundled command word. 668For example, 669.Dl Nm Cm tbf 32 Pa file.tar 670specifies three flags 671.Cm t , 672.Cm b , 673and 674.Cm f . 675The 676.Cm b 677and 678.Cm f 679flags both require arguments, 680so there must be two additional items 681on the command line. 682The 683.Ar 32 684is the argument to the 685.Cm b 686flag, and 687.Ar file.tar 688is the argument to the 689.Cm f 690flag. 691.Pp 692The mode options c, r, t, u, and x and the options 693b, f, l, m, o, v, and w comply with SUSv2. 694.Pp 695For maximum portability, scripts that invoke 696.Nm tar 697should use the bundled-argument format above, should limit 698themselves to the 699.Cm c , 700.Cm t , 701and 702.Cm x 703modes, and the 704.Cm b , 705.Cm f , 706.Cm m , 707.Cm v , 708and 709.Cm w 710options. 711.Pp 712Additional long options are provided to improve compatibility with other 713tar implementations. 714.Sh SECURITY 715Certain security issues are common to many archiving programs, including 716.Nm . 717In particular, carefully-crafted archives can request that 718.Nm 719extract files to locations outside of the target directory. 720This can potentially be used to cause unwitting users to overwrite 721files they did not intend to overwrite. 722If the archive is being extracted by the superuser, any file 723on the system can potentially be overwritten. 724There are three ways this can happen. 725Although 726.Nm 727has mechanisms to protect against each one, 728savvy users should be aware of the implications: 729.Bl -bullet -width indent 730.It 731Archive entries can have absolute pathnames. 732By default, 733.Nm 734removes the leading 735.Pa / 736character from filenames before restoring them to guard against this problem. 737.It 738Archive entries can have pathnames that include 739.Pa .. 740components. 741By default, 742.Nm 743will not extract files containing 744.Pa .. 745components in their pathname. 746.It 747Archive entries can exploit symbolic links to restore 748files to other directories. 749An archive can restore a symbolic link to another directory, 750then use that link to restore a file into that directory. 751To guard against this, 752.Nm 753checks each extracted path for symlinks. 754If the final path element is a symlink, it will be removed 755and replaced with the archive entry. 756If 757.Fl U 758is specified, any intermediate symlink will also be unconditionally removed. 759If neither 760.Fl U 761nor 762.Fl P 763is specified, 764.Nm 765will refuse to extract the entry. 766.El 767To protect yourself, you should be wary of any archives that 768come from untrusted sources. 769You should examine the contents of an archive with 770.Dl Nm Fl tf Pa filename 771before extraction. 772You should use the 773.Fl k 774option to ensure that 775.Nm 776will not overwrite any existing files or the 777.Fl U 778option to remove any pre-existing files. 779You should generally not extract archives while running with super-user 780privileges. 781Note that the 782.Fl P 783option to 784.Nm 785disables the security checks above and allows you to extract 786an archive while preserving any absolute pathnames, 787.Pa .. 788components, or symlinks to other directories. 789.Sh SEE ALSO 790.Xr bzip2 1 , 791.Xr compress 1 , 792.Xr cpio 1 , 793.Xr gzip 1 , 794.Xr mt 1 , 795.Xr pax 1 , 796.Xr shar 1 , 797.Xr libarchive 3 , 798.Xr libarchive-formats 5 , 799.Xr tar 5 800.Sh STANDARDS 801There is no current POSIX standard for the tar command; it appeared 802in 803.St -p1003.1-96 804but was dropped from 805.St -p1003.1-2001 . 806The options used by this implementation were developed by surveying a 807number of existing tar implementations as well as the old POSIX specification 808for tar and the current POSIX specification for pax. 809.Pp 810The ustar and pax interchange file formats are defined by 811.St -p1003.1-2001 812for the pax command. 813.Sh HISTORY 814A 815.Nm tar 816command appeared in Seventh Edition Unix, which was released in January, 1979. 817There have been numerous other implementations, 818many of which extended the file format. 819John Gilmore's 820.Nm pdtar 821public-domain implementation (circa November, 1987) 822was quite influential, and formed the basis of GNU tar. 823GNU tar was included as the standard system tar 824in 825.Fx 826beginning with 827.Fx 1.0 . 828.Pp 829This is a complete re-implementation based on the 830.Xr libarchive 3 831library. 832.Sh BUGS 833This program follows 834.St -p1003.1-96 835for the definition of the 836.Fl l 837option. 838Note that GNU tar prior to version 1.15 treated 839.Fl l 840as a synonym for the 841.Fl -one-file-system 842option. 843.Pp 844The 845.Fl C Pa dir 846option may differ from historic implementations. 847.Pp 848All archive output is written in correctly-sized blocks, even 849if the output is being compressed. 850Whether or not the last output block is padded to a full 851block size varies depending on the format and the 852output device. 853For tar and cpio formats, the last block of output is padded 854to a full block size if the output is being 855written to standard output or to a character or block device such as 856a tape drive. 857If the output is being written to a regular file, the last block 858will not be padded. 859Many compressors, including 860.Xr gzip 1 861and 862.Xr bzip2 1 , 863complain about the null padding when decompressing an archive created by 864.Nm , 865although they still extract it correctly. 866.Pp 867The compression and decompression is implemented internally, so 868there may be insignificant differences between the compressed output 869generated by 870.Dl Nm Fl czf Pa - file 871and that generated by 872.Dl Nm Fl cf Pa - file | Nm gzip 873.Pp 874The default should be to read and write archives to the standard I/O paths, 875but tradition (and POSIX) dictates otherwise. 876.Pp 877The 878.Cm r 879and 880.Cm u 881modes require that the archive be uncompressed 882and located in a regular file on disk. 883Other archives can be modified using 884.Cm c 885mode with the 886.Pa @archive-file 887extension. 888.Pp 889To archive a file called 890.Pa @foo 891or 892.Pa -foo 893you must specify it as 894.Pa ./@foo 895or 896.Pa ./-foo , 897respectively. 898.Pp 899In create mode, a leading 900.Pa ./ 901is always removed. 902A leading 903.Pa / 904is stripped unless the 905.Fl P 906option is specified. 907.Pp 908There needs to be better support for file selection on both create 909and extract. 910.Pp 911There is not yet any support for multi-volume archives or for archiving 912sparse files. 913.Pp 914Converting between dissimilar archive formats (such as tar and cpio) using the 915.Cm @ Ns Pa - 916convention can cause hard link information to be lost. 917(This is a consequence of the incompatible ways that different archive 918formats store hardlink information.) 919.Pp 920There are alternative long options for many of the short options that 921are deliberately not documented. 922