Knowledge (XXG)

tar (computing)

Source 📝

895:) format, introduced by the POSIX IEEE P1003.1 standard from 1988. It introduced additional header fields. Older tar programs will ignore the extra information (possibly extracting partially named files), while newer programs will test for the presence of the "ustar" string to determine if the new format is in use. The UStar format allows for longer file names and stores additional information about each file. The maximum filename size is 256, but it is split among a preceding path "filename prefix" and the filename itself, so can be much less. 216: 1530:, is a tar file that contains many files that extract into the working directory. Such a tar file can create problems by overwriting files of the same name in the working directory, or mixing one project's files into another. It is at best an inconvenience to the user, who is obliged to identify and delete a number of files interspersed with the directory's other contents. Such behavior is considered bad etiquette on the part of the archive's creator. 3486: 36: 3476: 606:, leaving significant wasted space on the tape between blocks (for the tape to physically start and stop moving). Some tape drives (and raw disks) support only fixed-length data blocks. Also, when writing to any medium such as a file system or network, it takes less time to write one large block than many small blocks. Therefore, the tar command writes data in records of many 512  1561:, which lists the contents and allows to exclude problematic files afterwards. These commands do not extract any files, but display the names of all files in the archive. If any are problematic, the user can create a new empty directory and extract the archive into it—or avoid the tar file entirely. Most graphical tools can display the contents of the archive before extracting them. 3466: 1504:(ACLs). In 2001, Star introduced support for ACLs and extended attributes, through its own tags for POSIX.1-2001 pax. bsdtar uses the star extensions to support ACLs. More recent versions of GNU tar support Linux extended attributes, reimplementing star extensions. A number of extensions are reviewed in the filetype manual for BSD tar, tar(5). 1922: 1606:
This can create a non-explicit (unobvious) tarbomb, which technically does not contain files with absolute paths or referring to parent directories, but still causes overwriting files outside current directory (for example, archive may contain two files with the same path and filename, first of which
1593:
in GNU tar. When a tar file is compressed whole, the compression format, being usually non-seekable, prevents this optimization from being done. A number of "indexed" compressors, which are aware of the tar format, can restore this feature for compressed files. To maintain seekability, tar files must
1168:
Type '7' (Contiguous file) is formally marked as reserved in the POSIX standard, but was meant to indicate files which ought to be contiguously allocated on disk. Few operating systems support creating such files explicitly, and hence most TAR programs do not support them, and will treat type 7 files
1541:
references when creating tar files. Files extracted from such archives will often be created in unusual locations outside the working directory and, like a tarbomb, have the potential to overwrite existing files. However, modern versions of FreeBSD and GNU tar do not create or extract absolute paths
870:
on archived files. To overcome this limitation, in 2001 star introduced a base-256 coding that is indicated by setting the high-order bit of the leftmost byte of a numeric field. GNU-tar and BSD-tar followed this idea. Additionally, versions of tar from before the first POSIX standard from 1988 pad
645:
record. The file data is written unaltered except that its length is rounded up to a multiple of 512 bytes. The original tar implementation did not care about the contents of the padding bytes, and left the buffer data unaltered, but most modern tar implementations fill the extra space with zeros.
1581:
The tar format was designed without a centralized index or table of content for files and their properties for streaming to tape backup devices. The archive must be read sequentially to list or extract files. For large tar archives, this causes a performance penalty, making tar archives unsuitable
882:
Unix filesystems support multiple links (names) for the same file. If several such files appear in a tar archive, only the first one is archived as a normal file; the rest are archived as hard links, with the "name of linked file" field set to the first one's name. On extraction, such hard links
878:
is calculated by taking the sum of the unsigned byte values of the header record with the eight checksum bytes taken to be ASCII spaces (decimal value 32). It is stored as a six digit octal number with leading zeroes followed by a NUL and then a space. Various implementations do not adhere to this
673:
The fields defined by the original Unix tar format are listed in the table below. The link indicator/file type table includes some modern extensions. When a field is unused it is filled with NUL bytes. The header uses 257 bytes, then is padded with NUL bytes to make it fill a 512 byte record.
1256:
The pax format is designed so that all implementations able to read the UStar format will be able to read the pax format as well. The only exceptions are files that make use of extended features, such as longer file names. For compatibility, these are encoded in the tar files as special
646:
The end of an archive is marked by at least two consecutive zero-filled records. (The origin of tar's record size appears to be the 512-byte disk sectors used in the Version 7 Unix file system.) The final block of an archive is padded out to full length with zeros.
1692:
for inclusion in other applications. This implementation automatically detects the format of the file and can extract from tar, pax, cpio, zip, rar, ar, xar, rpm and ISO 9660 cdrom images. It also comes with a functionally equivalent cpio command-line
1164:
POSIX.1-1988 vendor specific extensions using link flag values 'A'–'Z' partially have a different meaning with different vendors and thus are seen as outdated and replaced by the POSIX.1-2001 extensions that also include a vendor tag.
879:
format. In addition, some historic tar implementations treated bytes as signed. Implementations typically calculate the checksum both ways, and treat it as good if either the signed or unsigned sum matches the included checksum.
1602:
Another issue with tar format is that it allows several (possibly different) files in archive to have identical paths and filenames. When extracting such archive, usually the latter version of a file overwrites the former.
2625:
The extended attributes can be very valuable for storing file metadata (e.g. author="John Smith", subject="country landscape"), in the many cases where you do not want or can't store this data in the file internal
1624:
have at least partial support for tar (often using one of the implementations below). The history of tar is a story of incompatibilities, known as the "tar wars". Most tar implementations can also read and create
1814:, which compress the entire tar archive. Typically, the compressed form of the archive receives a filename by appending the format-specific compressor suffix to the archive file name. For example, a tar archive 1747:
module supports multiple tar formats, including ustar, pax and gnu; it can read but not create V7 format and the SunOS tar extended format; pax is the default format for creation of archives. Available since
1611:
to some location outside current directory, and second of which is a regular file; then extracting such archive on some tar implementations may cause writing to the location pointed to by the symlink).
1589:
program can still relatively quickly (in linear time relative to file count) look for a file by skipping file reads according to the "size" field in the file headers. This is the basis for option
1884:. The decompression of these formats is handled automatically if supported filename extensions are used, and compression is handled automatically using the same filename extensions if the option 1253:
In 2001, the Star program became the first tar to support the new format. In 2004, GNU tar supported the new format, though it does not write it as its default output from the tar program yet.
1173:
RTU (Real Time Unix) operating system, which supported an O_CTG flag to the open() function to request a contiguous file; however, that support was removed from GNU tar version 1.24 onwards.
5487: 1667:
distributions. It is based on the public domain implementation pdtar which started in 1987. Recent versions can use various formats, including ustar, pax, GNU and v7 formats.
2239: 1557:
If a user has only a very old tar available, which does not feature those security measures, these problems can be mitigated by first examining a tar file using the command
866:
character should also be used. Thus although there are 12 bytes reserved for storing the file size, only 11 octal digits can be stored. This gives a maximum file size of 8
1302:— additionally compress the archive with a compressor which will be automatically determined by the file name extension of the archive. If the archive's name ends with 1741:), is historically significant as some of its extensions were quite popular. First published in April 1997, its developer has stated that he began development in 1982. 5288: 3522: 549:.1-1988 and later POSIX.1-2001, and became a format supported by most modern file archiving systems. The tar command was abandoned in POSIX.1-2001 in favor of 1193:
format. The new tar format allows users to add any type of vendor-tagged vendor-specific enhancements. The following tags are defined by the POSIX standard:
354: 4353: 3146: 1988: 1853: 1803: 666:. Thus if all the files in an archive are ASCII text files, and have ASCII names, then the archive is essentially an ASCII text file (containing many 3052: 1497:
The original tar format was created in the early days of Unix, and despite current widespread use, many of its design features are considered dated.
1458:, working in another directory, where it is unpacked. This process copies an entire source directory tree including all special files, for example: 5032: 2181: 1185:
proposed a method for adding extensions to the tar format. This method was later accepted for the POSIX.1-2001 standard. This format is known as
2321: 5378: 2431: 553:
command, which was to support ustar file format; the tar command was indicated for withdrawal in favor of pax command at least since 1994.
4986: 3868: 3515: 1733: 119: 2146: 1782:
A tar archive file contains uncompressed byte streams of the files which it contains. To achieve archive compression, a variety of
4226: 641:
collects objects of all kinds that stick to its surface. Each file object includes any file data, and is preceded by a 512-byte
53: 2716: 610:
blocks. The user can specify a blocking factor, which is the number of blocks per record. The default is 20, producing 10 
2604: 2094:"libarchive - C library and command-line tools for reading and writing tar, cpio, zip, ISO, and other archive formats @ GitHub" 5497: 5283: 5006: 4346: 3383: 2347: 1900:), using not the filename but the data within. Unrecognized formats are to be manually compressed or decompressed by piping. 1826: 1681: 57: 1910:
limitations resulted in additional conventions for naming compressed tar archives. However, this practice has declined with
100: 560:
operating systems usually include tools to support tar files, as well as utilities commonly used to compress them, such as
5482: 5477: 3508: 3469: 3045: 2064: 72: 5112: 4320: 4316: 4162: 3549: 3540: 3197: 2059: 1621: 495:
or backup purposes. The name is derived from "tape archive", as it was originally developed to write data to sequential
2868:
in The Single UNIX Specification, Version 2, 1997, opengroup.org – indicates applications should migrate to pax utility
5423: 5027: 4609: 3151: 2292: 1897: 422: 190: 455: 79: 4211: 4046: 3984: 3909: 3446: 2947: 1848:(bzip2) to compress or decompress the archive file upon creation or unpacking. Relatively recent additions include 1649: 622:
There are multiple tar file formats, including historical and current ones. Two tar formats are codified in POSIX:
591: 339: 1929:, to create a compressed archive. As shown, the combination of the files in the archive is compressed as one unit. 46: 5467: 5152: 5147: 5087: 4339: 3420: 2885: 2638: 2526: 2458: 5492: 5472: 4293: 3489: 3038: 2215: 269: 86: 1485:. *NIX-distributions use it in various source- and binary-package distribution mechanisms, with most software 2386: 1269:
directory. A pax-supporting implementation would make use of the information, while non-supporting ones like
3479: 2265:
IEEE Std 1003.1-1988, IEEE Standard for Information Technology - Portable Operating System Interface (POSIX)
2069: 392: 594:, and there are otherwise multiple third party tools available to read and write these formats on Windows. 5001: 4740: 4458: 4365: 3842: 1834: 1550:. The bsdtar program, which is also available on many operating systems and is the default tar utility on 446: 68: 1242:: userid and groupid without size limitation (the historic tar format is limited to a max. id of 2097151) 5446: 4951: 4573: 4568: 4563: 4558: 4256: 4231: 4109: 4004: 3966: 3887: 3588: 3217: 2933: 2074: 1911: 1538: 1482: 1106: 508: 492: 289: 261: 3465: 2871: 2423: 2185: 2742: 5441: 5436: 5334: 5102: 4852: 4842: 4745: 4270: 3976: 3822: 2879: 2874:
in The Open Group Base Specifications Issue 6, 2004 Edition, opengroup.org – indicates tar as removed
2697: 2520: 1892:) is passed to an applicable version of GNU tar. BSD tar detects an even wider range of compressors ( 603: 156: 2810: 2495: 2112: 1204:: all timestamps of a file in arbitrary resolution (most implementations use nanosecond granularity) 215: 5233: 5011: 4956: 4463: 4331: 3946: 3792: 3695: 3410: 3232: 1501: 863: 852: 321: 316: 160: 2207: 1585:
With a well-formed tar file stored on a seekable (i.e. allows efficient random reads) medium, the
4938: 4928: 4679: 3892: 3578: 3105: 3085: 1169:
as if they were type 0 (regular). An exception is older versions of GNU tar, when running on the
642: 368: 304: 2361: 2865: 2485:, git.savannah.gnu.org - search for "Added support for POSIX.1-2001 and ustar archive formats." 2167: 5203: 4604: 4521: 4510: 4362: 4057: 3999: 3879: 3703: 3662: 3657: 3415: 3395: 3388: 3378: 3373: 3363: 3358: 3348: 3343: 3320: 3315: 3280: 3270: 3255: 3245: 3222: 3202: 3095: 3010: 2958: 2941: 2835: 2582: 2427: 1562: 587: 293: 143: 2796: 2417: 1654:, based on the original Unix V7 tar and comes as the default on the Solaris operating system 5408: 4946: 4791: 4786: 4776: 4649: 4395: 4038: 3860: 3668: 3531: 3240: 3212: 2138: 1783: 1706: 1594:
be also concatenated properly, by removing the trailing zero block at the end of each file.
1534: 1455: 1451: 1182: 462: 328: 276: 93: 5368: 5342: 5097: 4996: 4923: 4872: 4862: 4837: 4750: 4735: 4659: 4014: 3812: 3713: 3405: 2859: 2764: 1542:
and parent-directory references by default, unless it is explicitly allowed with the flag
1500:
Many older tar implementations do not record nor restore extended attributes (xattrs) or
862:
numbers using ASCII digits, with leading zeroes. For historical reasons, a final NUL or
2134: 27:
Computer file format that can combine multiple files into a single file called "tarball"
5398: 5178: 4991: 4966: 4913: 4893: 4857: 4832: 4822: 4812: 4720: 4715: 4500: 4468: 4432: 4427: 4422: 4236: 3897: 3674: 3618: 3573: 3335: 3310: 3061: 2903: 2889: 2530: 1052: 819: 667: 538: 309: 2482: 2277:
IEEE Standard for Information Technology - Portable Operating System Interface (POSIX)
5461: 5373: 5062: 4898: 4867: 4689: 4684: 4578: 4515: 4473: 4417: 4369: 4066: 3738: 3608: 3560: 3400: 2720: 1915: 1753: 1630: 1608: 1190: 1076: 851:
Some pre-POSIX.1-1988 tar implementations indicated a directory by having a trailing
843: 638: 550: 521: 500: 439: 344: 2612: 5393: 5388: 5188: 5183: 4908: 4710: 4411: 4137: 4084: 3598: 3250: 3166: 3100: 1907: 658:
about a file. To ensure portability across different architectures with different
496: 484: 334: 2142: 2784: 17: 5213: 5042: 4694: 4634: 4380: 3227: 2542: 1527: 1486: 1479: 1096: 1086: 542: 504: 402: 349: 35: 541:
in January 1979, replacing the tp program (which in turn replaced "tap"). The
507:
parameters, such as name, timestamps, ownership, file-access permissions, and
5243: 5142: 5132: 4390: 4221: 4206: 3994: 3936: 3436: 2560: 1689: 1142:
Extended header with metadata for the next file in the archive (POSIX.1-2001)
1116: 659: 380: 150: 138: 5418: 5127: 4664: 4505: 4147: 4009: 3728: 3723: 3685: 3624: 3500: 3176: 3075: 2039: 1566: 1323: 1066: 833: 557: 476: 285: 2914: 1554:
v10.6, also does not follow parent-directory references or symbolic links.
633:
A tar archive consists of a series of file objects, hence the popular term
5314: 5273: 5253: 5248: 5238: 5223: 5208: 5173: 5168: 5082: 5077: 5052: 5047: 4976: 4971: 4827: 4796: 4760: 4755: 4725: 4669: 4639: 4629: 4624: 4619: 4614: 4532: 4288: 4191: 4142: 4122: 3956: 3827: 3644: 3593: 3171: 3131: 3020: 3002: 2985: 2968: 2951: 2907: 2845: 2592: 2026: 2013: 1873: 1811: 1795: 1516: 1315: 1170: 875: 867: 655: 611: 561: 1925:
Tar archiving is often used together with a compression method, such as
5413: 5347: 5319: 5309: 5304: 5278: 5268: 5263: 5218: 5198: 5137: 5122: 5117: 5092: 5072: 5057: 4918: 4537: 4479: 4385: 4283: 4196: 4117: 4019: 3931: 3743: 3583: 3295: 3290: 3016: 2981: 2964: 2841: 2588: 1671: 2897: 5403: 5352: 5324: 5193: 5107: 4961: 4877: 4847: 4817: 4654: 4599: 4495: 4448: 4251: 4246: 4132: 4089: 3961: 3758: 3753: 3748: 3680: 3652: 3613: 3275: 3141: 3121: 2927: 1903: 1582:
for situations that often require random access to individual files.
1507:
Other formats have been created to address the shortcomings of tar.
1454:
file of the tar utility and piping it to another tar process on its
2717:"Star a very fast and Posix 1003.1 compliant tar archiver for UNIX" 1921: 1226:: user and group names of unlimited length and character set coding 1216:: symlink target names of unlimited length and character set coding 674:
There is no "magic number" in the header, for file identification.
499:
devices with no file system of their own, such as devices that use
5383: 5258: 5228: 5067: 4903: 4781: 4730: 4674: 4644: 4542: 4526: 4489: 4484: 4453: 4216: 4201: 3951: 3919: 3787: 3733: 3708: 3629: 3568: 3260: 3126: 3030: 2998: 2860:
X/Open CAE Specification Commands and Utilities Issue 4, Version 2
2657: 2394: 1950: 1920: 1893: 1791: 1685: 1664: 1638: 1570: 1551: 1270: 1246: 1049: 859: 816: 663: 580: 569: 546: 512: 483:
is a computer software utility for collecting many files into one
297: 1760:
implementations can read and create multiple types of tar files.
1569:
is also able to open a tar archive and display its contents in a
5037: 4981: 4298: 4278: 4175: 4170: 4152: 4127: 4099: 4094: 4079: 4074: 4024: 3989: 3941: 3924: 3902: 3832: 3817: 3807: 3802: 3797: 3634: 3441: 3368: 3353: 3325: 3285: 3161: 3156: 3136: 3080: 2975: 2001: 1976: 1963: 1926: 1861: 1807: 1799: 1787: 1757: 1626: 1416: 1307: 1245:
a character set definition for path names and user/group names (
607: 565: 281: 4335: 3504: 3034: 3025: 2683: 891:
Most modern tar programs read and write archives in the UStar (
630:. Not codified but still in current use is the GNU tar format. 413:
u s t a r \040 \040 \0 
4241: 3914: 3848: 3718: 3603: 3451: 3305: 3265: 3207: 2920: 2300: 2288: 2093: 1830: 1658: 265: 29: 2862:(pdf), 1994, opengroup.org – indicates tar as to be withdrawn 1232:: files with unlimited size (the historic tar format is 8 GB) 1724: 3192: 2992: 2698:"GNU tar 1.35: 4.2.4 Combining Archives with --concatenate" 1712: 755:
Last modification time in numeric Unix time format (octal)
2387:"Open/Extract TAR File with Freeware on Windows/Mac/Linux" 2322:"Announcing Windows 10 Insider Preview Build 17063 for PC" 1620:
Historically, many systems have implemented tar, and many
2605:"Extended attributes: the good, the not so good, the bad" 1210:: path names of unlimited length and character set coding 602:
Many historic tape drives read and write variable-length
408:
u s t a r \0 0 0 
2459:"GNU tar 1.32: 8.1 Using Less Space through Compression" 503:. The archive data sets created by tar contain various 1450:
A tarpipe is the method of creating an archive on the
1734: 1718: 1715: 1134:
Global extended header with meta data (POSIX.1-2001)
662:, the information in the header record is encoded in 537:
The command-line utility was first introduced in the
1721: 1478:
The tar format continues to be used extensively for
451:
POSIX since POSIX.1, presently in the definition of
5361: 5333: 5297: 5161: 5020: 4937: 4886: 4805: 4769: 4703: 4592: 4551: 4441: 4404: 4269: 4184: 4161: 4108: 4065: 4056: 4037: 3975: 3878: 3859: 3841: 3780: 3771: 3694: 3643: 3559: 3539: 3429: 3334: 3185: 3114: 3068: 1709: 1590: 1586: 1547: 1543: 1431: 1412: 1408: 1404: 1389: 1374: 1370: 1366: 1319: 1311: 1303: 1266: 1262: 1258: 460: 445: 435: 421: 401: 391: 379: 367: 327: 315: 303: 275: 256: 239: 231: 223: 209: 201: 189: 167: 149: 137: 60:. Unsourced material may be challenged and removed. 1565:can open tar archives and display their contents. 1515:"Tarbomb" redirects here. Not to be confused with 1350:— show a list of files and folders in the archive; 2496:"GNU tar 1.34: 8. Controlling the Archive Format" 5488:Unix archivers and compression-related utilities 2206:Gilmore, John; Fenlason, Jay (4 February 2019). 545:to store this information was standardized in 4347: 3516: 3046: 2293:"IBM System i Version 7.2 Programming Qshell" 8: 2884: – Shell and Utilities Reference, 2525: – Shell and Utilities Reference, 362: 132: 1771:archive files usually have the file suffix 1489:made available in compressed tar archives. 919:(Several fields, same as in the old format) 4354: 4340: 4332: 4062: 4053: 3875: 3777: 3556: 3523: 3509: 3501: 3475: 3053: 3039: 3031: 2892:– specifies the ustar and pax file formats 2453: 2451: 2449: 1150:Vendor specific extensions (POSIX.1-1988) 871:the values with spaces instead of zeroes. 214: 198: 131: 1688:. The core functionality is available as 120:Learn how and when to remove this message 2543:"#2116 Tars with pax headers not parsed" 1932: 1644:Key implementations in order of origin: 1332:— append files to the end of an archive; 1273:would process them as additional files. 1033: 897: 883:should be recreated in the file system. 800: 679: 410:at byte offset 257 (for POSIX versions) 2085: 677:Pre-POSIX.1-1988 (i.e. v7) tar header: 2765:"star - unique standard tape archiver" 2576: 2574: 2234: 2232: 1286:tar <name of the tar archive> 361: 1680:) has become the default tar on most 1031:field can have the following values: 798:field can have the following values: 627: 7: 2811:"tar-1.31 released [stable]" 2763:Jörg Schilling (September 4, 2021). 2743:"TAR versus Portability: Schily tar" 2741:Thomas E. Dickey (January 4, 2015). 2682:Vasilevsky, Dave (6 December 2023). 2658:"What makes a tar archive seekable?" 2135:"v07i088: Public-domain TAR program" 2113:"tar-1.35 released [stable]" 1426:tar-cavfarchive.tar.gzREADME.txtsrc 1158:Reserved for future standardization 579:command has also been ported to the 58:adding citations to reliable sources 3430:Document packaging and distribution 3336:Software packaging and distribution 1684:-based operating systems including 955:UStar indicator, "ustar", then NUL 2111:Sergey Poznyakoff (18 July 2023). 393:Uniform Type Identifier (UTI) 25: 2809:Poznyakoff, Sergey (2019-01-02). 2422:. Coriolis Groups Books. p.  1822:, when it is compressed by gzip. 1356:— show a list of processed files. 943:(Same field as in the old format) 623: 3485: 3484: 3474: 3464: 1786:programs are available, such as 1705: 1533:A related problem is the use of 1384:tar-cvfarchive.tarREADME.txtsrc 1338:— extract files from an archive; 733:Group's numeric user ID (octal) 722:Owner's numeric user ID (octal) 654:The file header record contains 34: 2348:"Tar and Curl Come to Windows!" 2149:from the original on 2022-02-07 529:sees continued widespread use. 45:needs additional citations for 2611:. 15 July 2014. Archived from 1825:Popular tar programs like the 1682:Berkeley Software Distribution 1265:type files, typically under a 858:Numeric values are encoded in 1: 2936:Programmer's Manual, Volume 1 2886:The Single UNIX Specification 2527:The Single UNIX Specification 2065:Comparison of archive formats 1764:Suffixes for compressed files 1344:— specify the archive's name; 586:BSD-tar has been included in 3026:TAR - Windows CMD - SS64.com 2561:"duplicity: New file format" 2060:Comparison of file archivers 1833:versions of tar support the 1434:into the current directory: 1392:into the current directory: 592:Windows 10 April 2018 Update 417:absent in pre-POSIX versions 2133:John Gilmore (1986-12-10). 777:Link indicator (file type) 766:Checksum for header record 744:File size in bytes (octal) 173:; 45 years ago 5514: 3447:Open Packaging Conventions 2656:BillThor (July 28, 2017). 2547:7-Zip / Bugs | SourceForge 1633:(the latter actually is a 1514: 5432: 4376: 4311: 3460: 3186:Archiving and compression 1430:Extract contents for the 1388:Extract contents for the 487:, often referred to as a 415:(for old GNU tar format) 252: 196: 185: 2950:User Commands Reference 2216:Free Software Foundation 1958:.tb2, .tbz, .tbz2, .tz2 1934:File suffix equivalents 1460: 1436: 1421: 1394: 1379: 381:Internet media type 2326:Windows Experience Blog 2070:List of archive formats 1663:is the default on most 1403:Create an archive file 1365:Create an archive file 1296:— create a new archive; 243:2023-09-28 / 2023-09-28 227:1986-10-29 / 1986-10-29 4405:File system navigation 3442:OEBPS Container Format 2416:Kientzle, Tim (1995). 2275:IEEE Std 1003.1-2001, 2246:. FreeBSD. 20 May 2004 1930: 1622:general file archivers 1441:tar-xvfarchive.tar.gz 5498:IBM i Qshell commands 5447:Windows Support Tools 5442:Environment variables 4257:Windows Media Encoder 3967:Windows Media Encoder 3589:GNOME Archive Manager 2419:Internet File Formats 2075:List of Unix commands 1924: 1483:software distribution 1474:Software distribution 1415:and compress it with 802:Link indicator field 794:The pre-POSIX.1-1988 5483:GNU Project software 5478:Free backup software 5437:List of DOS commands 5335:Software development 5162:Maintenance and care 3677:(decompression only) 3671:(decompression only) 3665:(decompression only) 3621:(decompression only) 2565:duplicity.nongnu.org 2240:"tar(5) manual page" 1835:command line options 1502:access-control lists 1336:-x, --extract, --get 1010:Device minor number 999:Device major number 966:UStar version, "00" 788:Name of linked file 637:, referencing how a 69:"Tar" computing 54:improve this article 4321:compression formats 4317:compression methods 4227:Schrödinger (Dirac) 2615:on 14 December 2014 1935: 1752:Additionally, most 1641:-2001-extensions). 1616:Key implementations 1399:tar-xvfarchive.tar 1300:-a, --auto-compress 1036: 803: 364: 134: 4391:Windows PowerShell 4212:Helix DNA Producer 3910:Helix DNA Producer 3893:Fraunhofer FDK AAC 3437:OEB Package Format 2787:module, python.org 2397:on 6 February 2015 2208:"Basic Tar Format" 2098:www.libarchive.org 1933: 1931: 1699:, better known as 1559:tar tf archive.tar 1034: 801: 711:File mode (octal) 583:operating system. 397:public.tar-archive 369:Filename extension 205:3.7.2 / 2023-09-12 139:Original author(s) 5455: 5454: 4329: 4328: 4307: 4306: 4265: 4264: 4033: 4032: 3855: 3854: 3767: 3766: 3498: 3497: 2984:General Commands 2967:General Commands 2888:, Version 4 from 2844:General Commands 2815:GNU mailing lists 2715:Schilling, Jörg. 2529:, Version 4 from 2433:978-1-883577-56-8 2051: 2050: 1162: 1161: 1155:All other values 1087:Character special 1025: 1024: 988:Owner group name 893:Unix Standard TAR 855:(/) in the name. 849: 848: 792: 791: 588:Microsoft Windows 473: 472: 386:application/x-tar 360: 359: 294:Microsoft Windows 247: 246: 191:Stable release(s) 171:January 1979 144:Bell Laboratories 130: 129: 122: 104: 18:Tar (file format) 16:(Redirected from 5505: 5468:Windows commands 4806:User environment 4396:Recovery Console 4356: 4349: 4342: 4333: 4063: 4054: 4050: 3876: 3872: 3778: 3669:StuffIt Expander 3557: 3553: 3532:Data compression 3525: 3518: 3511: 3502: 3488: 3487: 3478: 3477: 3468: 3115:Compression only 3055: 3048: 3041: 3032: 3014: 3013: 2996: 2995: 2979: 2978: 2962: 2961: 2945: 2944: 2931: 2930: 2918: 2917: 2901: 2900: 2883: 2882: 2848: 2839: 2838: 2831: 2825: 2824: 2822: 2821: 2806: 2800: 2794: 2788: 2782: 2776: 2775: 2773: 2771: 2760: 2754: 2753: 2751: 2749: 2738: 2732: 2731: 2729: 2728: 2719:. Archived from 2712: 2706: 2705: 2694: 2688: 2687: 2679: 2673: 2672: 2670: 2668: 2653: 2647: 2646: 2635: 2629: 2628: 2622: 2620: 2609:Les bons comptes 2601: 2595: 2586: 2585: 2578: 2569: 2568: 2557: 2551: 2550: 2539: 2533: 2524: 2523: 2516: 2510: 2509: 2507: 2506: 2492: 2486: 2480: 2474: 2473: 2471: 2470: 2455: 2444: 2443: 2441: 2440: 2413: 2407: 2406: 2404: 2402: 2393:. Archived from 2382: 2376: 2375: 2373: 2372: 2358: 2352: 2351: 2344: 2338: 2337: 2335: 2333: 2318: 2312: 2311: 2309: 2308: 2297: 2285: 2279: 2273: 2267: 2262: 2256: 2255: 2253: 2251: 2236: 2227: 2226: 2224: 2222: 2203: 2197: 2196: 2194: 2193: 2184:. Archived from 2178: 2172: 2171: 2164: 2158: 2157: 2155: 2154: 2130: 2124: 2123: 2121: 2119: 2108: 2102: 2101: 2090: 1936: 1737: 1731: 1730: 1727: 1726: 1723: 1720: 1717: 1714: 1711: 1592: 1588: 1560: 1549: 1548:--absolute-names 1545: 1539:parent directory 1468: 1464: 1440: 1433: 1425: 1414: 1410: 1406: 1398: 1391: 1383: 1376: 1372: 1368: 1355: 1349: 1343: 1337: 1331: 1321: 1313: 1305: 1301: 1295: 1268: 1264: 1260: 1177:POSIX.1-2001/pax 1126:Contiguous file 1037: 1035:Type flag field 1021:Filename prefix 977:Owner user name 898: 804: 680: 578: 466: 414: 409: 365: 340:GPL-3.0-or-later 277:Operating system 218: 199: 181: 179: 174: 135: 125: 118: 114: 111: 105: 103: 62: 38: 30: 21: 5513: 5512: 5508: 5507: 5506: 5504: 5503: 5502: 5493:Plan 9 commands 5473:Archive formats 5458: 5457: 5456: 5451: 5428: 5357: 5329: 5298:Boot management 5293: 5157: 5016: 4933: 4882: 4801: 4765: 4699: 4593:Disk management 4588: 4547: 4442:File management 4437: 4400: 4372: 4360: 4330: 4325: 4303: 4261: 4180: 4157: 4104: 4044: 4043: 4040: 4029: 3971: 3866: 3865: 3862: 3851: 3837: 3773: 3763: 3734:PKZIP/SecureZIP 3714:Archive Utility 3690: 3639: 3547: 3546: 3544: 3535: 3529: 3499: 3494: 3456: 3425: 3406:Package (macOS) 3330: 3181: 3110: 3064: 3062:Archive formats 3059: 3009: 3008: 3005:– User Commands 2991: 2990: 2974: 2973: 2957: 2956: 2940: 2939: 2926: 2925: 2913: 2912: 2896: 2895: 2878: 2877: 2856: 2851: 2834: 2833: 2832: 2828: 2819: 2817: 2808: 2807: 2803: 2795: 2791: 2783: 2779: 2769: 2767: 2762: 2761: 2757: 2747: 2745: 2740: 2739: 2735: 2726: 2724: 2714: 2713: 2709: 2696: 2695: 2691: 2681: 2680: 2676: 2666: 2664: 2655: 2654: 2650: 2643:man.freebsd.org 2637: 2636: 2632: 2618: 2616: 2603: 2602: 2598: 2581: 2580: 2579: 2572: 2559: 2558: 2554: 2541: 2540: 2536: 2519: 2518: 2517: 2513: 2504: 2502: 2494: 2493: 2489: 2481: 2477: 2468: 2466: 2457: 2456: 2447: 2438: 2436: 2434: 2415: 2414: 2410: 2400: 2398: 2384: 2383: 2379: 2370: 2368: 2360: 2359: 2355: 2346: 2345: 2341: 2331: 2329: 2320: 2319: 2315: 2306: 2304: 2295: 2287: 2286: 2282: 2274: 2270: 2263: 2259: 2249: 2247: 2238: 2237: 2230: 2220: 2218: 2205: 2204: 2200: 2191: 2189: 2180: 2179: 2175: 2166: 2165: 2161: 2152: 2150: 2132: 2131: 2127: 2117: 2115: 2110: 2109: 2105: 2092: 2091: 2087: 2083: 2056: 1886:--auto-compress 1766: 1735: 1708: 1704: 1618: 1600: 1579: 1558: 1520: 1513: 1495: 1476: 1471: 1470: 1466: 1462: 1452:standard output 1448: 1443: 1442: 1438: 1428: 1427: 1423: 1401: 1400: 1396: 1386: 1385: 1381: 1363: 1353: 1347: 1341: 1335: 1329: 1299: 1293: 1289:Basic options: 1287: 1284: 1279: 1267:PaxHeaders.XXXX 1179: 889: 652: 620: 600: 576: 535: 461: 431: 429: 412: 407: 387: 375: 352: 347: 342: 337: 248: 177: 175: 172: 168:Initial release 126: 115: 109: 106: 63: 61: 51: 39: 28: 23: 22: 15: 12: 11: 5: 5511: 5509: 5501: 5500: 5495: 5490: 5485: 5480: 5475: 5470: 5460: 5459: 5453: 5452: 5450: 5449: 5444: 5439: 5433: 5430: 5429: 5427: 5426: 5421: 5416: 5411: 5406: 5401: 5396: 5391: 5386: 5381: 5376: 5371: 5365: 5363: 5359: 5358: 5356: 5355: 5350: 5345: 5339: 5337: 5331: 5330: 5328: 5327: 5322: 5317: 5312: 5307: 5301: 5299: 5295: 5294: 5292: 5291: 5286: 5281: 5276: 5271: 5266: 5261: 5256: 5251: 5246: 5241: 5236: 5231: 5226: 5221: 5216: 5211: 5206: 5201: 5196: 5191: 5186: 5181: 5176: 5171: 5165: 5163: 5159: 5158: 5156: 5155: 5150: 5145: 5140: 5135: 5130: 5125: 5120: 5115: 5110: 5105: 5100: 5095: 5090: 5085: 5080: 5075: 5070: 5065: 5060: 5055: 5050: 5045: 5040: 5035: 5030: 5024: 5022: 5018: 5017: 5015: 5014: 5009: 5004: 4999: 4994: 4989: 4984: 4979: 4974: 4969: 4964: 4959: 4954: 4949: 4943: 4941: 4935: 4934: 4932: 4931: 4926: 4921: 4916: 4911: 4906: 4901: 4896: 4890: 4888: 4884: 4883: 4881: 4880: 4875: 4870: 4865: 4860: 4855: 4850: 4845: 4840: 4835: 4830: 4825: 4820: 4815: 4809: 4807: 4803: 4802: 4800: 4799: 4794: 4789: 4784: 4779: 4773: 4771: 4767: 4766: 4764: 4763: 4758: 4753: 4748: 4743: 4738: 4733: 4728: 4723: 4718: 4713: 4707: 4705: 4701: 4700: 4698: 4697: 4692: 4687: 4682: 4677: 4672: 4667: 4662: 4657: 4652: 4647: 4642: 4637: 4632: 4627: 4622: 4617: 4612: 4607: 4602: 4596: 4594: 4590: 4589: 4587: 4586: 4581: 4576: 4571: 4566: 4561: 4555: 4553: 4549: 4548: 4546: 4545: 4540: 4535: 4530: 4524: 4519: 4513: 4508: 4503: 4498: 4493: 4487: 4482: 4477: 4471: 4466: 4461: 4456: 4451: 4445: 4443: 4439: 4438: 4436: 4435: 4430: 4425: 4420: 4415: 4408: 4406: 4402: 4401: 4399: 4398: 4393: 4388: 4386:Command Prompt 4383: 4377: 4374: 4373: 4370:shell builtins 4361: 4359: 4358: 4351: 4344: 4336: 4327: 4326: 4324: 4323: 4312: 4309: 4308: 4305: 4304: 4302: 4301: 4296: 4291: 4286: 4281: 4275: 4273: 4267: 4266: 4263: 4262: 4260: 4259: 4254: 4249: 4244: 4239: 4234: 4229: 4224: 4219: 4214: 4209: 4204: 4199: 4194: 4188: 4186: 4182: 4181: 4179: 4178: 4173: 4167: 4165: 4159: 4158: 4156: 4155: 4150: 4145: 4140: 4135: 4130: 4125: 4120: 4114: 4112: 4106: 4105: 4103: 4102: 4097: 4092: 4087: 4082: 4077: 4071: 4069: 4060: 4051: 4035: 4034: 4031: 4030: 4028: 4027: 4022: 4017: 4012: 4007: 4002: 4000:Monkey's Audio 3997: 3992: 3987: 3981: 3979: 3973: 3972: 3970: 3969: 3964: 3959: 3954: 3949: 3944: 3939: 3934: 3929: 3928: 3927: 3922: 3912: 3907: 3906: 3905: 3900: 3898:Nero AAC Codec 3895: 3884: 3882: 3873: 3857: 3856: 3853: 3852: 3847: 3845: 3839: 3838: 3836: 3835: 3830: 3825: 3820: 3815: 3810: 3805: 3800: 3795: 3790: 3784: 3782: 3775: 3769: 3768: 3765: 3764: 3762: 3761: 3756: 3751: 3746: 3741: 3736: 3731: 3726: 3721: 3716: 3711: 3706: 3700: 3698: 3692: 3691: 3689: 3688: 3683: 3678: 3675:The Unarchiver 3672: 3666: 3660: 3655: 3649: 3647: 3641: 3640: 3638: 3637: 3632: 3627: 3622: 3616: 3611: 3606: 3601: 3596: 3591: 3586: 3581: 3576: 3571: 3565: 3563: 3554: 3537: 3536: 3530: 3528: 3527: 3520: 3513: 3505: 3496: 3495: 3493: 3492: 3482: 3472: 3461: 3458: 3457: 3455: 3454: 3449: 3444: 3439: 3433: 3431: 3427: 3426: 3424: 3423: 3418: 3413: 3408: 3403: 3398: 3393: 3392: 3391: 3386: 3381: 3371: 3366: 3361: 3356: 3351: 3346: 3340: 3338: 3332: 3331: 3329: 3328: 3323: 3318: 3313: 3308: 3303: 3300: 3299: 3298: 3288: 3283: 3278: 3273: 3268: 3263: 3258: 3253: 3248: 3243: 3238: 3235: 3230: 3225: 3220: 3215: 3210: 3205: 3200: 3195: 3189: 3187: 3183: 3182: 3180: 3179: 3174: 3169: 3164: 3159: 3154: 3149: 3144: 3139: 3134: 3129: 3124: 3118: 3116: 3112: 3111: 3109: 3108: 3103: 3098: 3093: 3088: 3083: 3078: 3072: 3070: 3069:Archiving only 3066: 3065: 3060: 3058: 3057: 3050: 3043: 3035: 3029: 3028: 3023: 3006: 2988: 2971: 2954: 2937: 2923: 2919:– manual from 2910: 2904:Version 7 Unix 2893: 2890:The Open Group 2875: 2869: 2863: 2855: 2854:External links 2852: 2850: 2849: 2826: 2801: 2789: 2777: 2755: 2733: 2707: 2689: 2674: 2648: 2630: 2596: 2570: 2552: 2534: 2531:The Open Group 2511: 2487: 2475: 2445: 2432: 2408: 2377: 2353: 2339: 2313: 2280: 2268: 2257: 2228: 2214:. and others. 2198: 2173: 2159: 2125: 2103: 2084: 2082: 2079: 2078: 2077: 2072: 2067: 2062: 2055: 2052: 2049: 2048: 2045: 2042: 2036: 2035: 2032: 2029: 2023: 2022: 2019: 2016: 2010: 2009: 2007: 2004: 1998: 1997: 1994: 1991: 1985: 1984: 1982: 1979: 1973: 1972: 1969: 1966: 1960: 1959: 1956: 1953: 1947: 1946: 1943: 1940: 1916:long filenames 1820:archive.tar.gz 1765: 1762: 1750: 1749: 1745:Python tarfile 1742: 1694: 1668: 1655: 1617: 1614: 1599: 1596: 1578: 1575: 1546:or the option 1535:absolute paths 1512: 1509: 1494: 1491: 1475: 1472: 1469:tarx-Cdestdir 1461: 1456:standard input 1447: 1444: 1437: 1432:archive.tar.gz 1422: 1411:and directory 1407:from the file 1405:archive.tar.gz 1395: 1380: 1373:and directory 1369:from the file 1362: 1359: 1358: 1357: 1351: 1345: 1339: 1333: 1327: 1297: 1285: 1283: 1282:Command syntax 1280: 1278: 1275: 1251: 1250: 1243: 1233: 1227: 1217: 1211: 1205: 1178: 1175: 1160: 1159: 1156: 1152: 1151: 1148: 1144: 1143: 1140: 1136: 1135: 1132: 1128: 1127: 1124: 1120: 1119: 1114: 1110: 1109: 1104: 1100: 1099: 1094: 1090: 1089: 1084: 1080: 1079: 1074: 1070: 1069: 1064: 1060: 1059: 1056: 1045: 1044: 1041: 1023: 1022: 1019: 1016: 1012: 1011: 1008: 1005: 1001: 1000: 997: 994: 990: 989: 986: 983: 979: 978: 975: 972: 968: 967: 964: 961: 957: 956: 953: 950: 946: 945: 940: 937: 933: 932: 929: 926: 922: 921: 916: 913: 909: 908: 905: 902: 888: 885: 847: 846: 841: 837: 836: 831: 827: 826: 823: 812: 811: 808: 796:Link indicator 790: 789: 786: 783: 779: 778: 775: 772: 768: 767: 764: 761: 757: 756: 753: 750: 746: 745: 742: 739: 735: 734: 731: 728: 724: 723: 720: 717: 713: 712: 709: 706: 702: 701: 698: 695: 691: 690: 687: 684: 668:NUL characters 660:byte orderings 651: 648: 619: 616: 599: 596: 543:file structure 539:Version 7 Unix 534: 531: 511:organization. 471: 470: 467: 458: 457: 449: 443: 442: 437: 436:Type of format 433: 432: 427: 425: 423:Latest release 419: 418: 405: 399: 398: 395: 389: 388: 385: 383: 377: 376: 373: 371: 358: 357: 331: 325: 324: 319: 313: 312: 310:Cross-platform 307: 301: 300: 279: 273: 272: 258: 254: 253: 250: 249: 245: 244: 241: 237: 236: 233: 229: 228: 225: 221: 220: 211: 207: 206: 203: 197: 194: 193: 187: 186: 183: 182: 169: 165: 164: 153: 147: 146: 141: 128: 127: 42: 40: 33: 26: 24: 14: 13: 10: 9: 6: 4: 3: 2: 5510: 5499: 5496: 5494: 5491: 5489: 5486: 5484: 5481: 5479: 5476: 5474: 5471: 5469: 5466: 5465: 5463: 5448: 5445: 5443: 5440: 5438: 5435: 5434: 5431: 5425: 5422: 5420: 5417: 5415: 5412: 5410: 5407: 5405: 5402: 5400: 5397: 5395: 5392: 5390: 5387: 5385: 5382: 5380: 5377: 5375: 5372: 5370: 5367: 5366: 5364: 5362:Miscellaneous 5360: 5354: 5351: 5349: 5346: 5344: 5341: 5340: 5338: 5336: 5332: 5326: 5323: 5321: 5318: 5316: 5313: 5311: 5308: 5306: 5303: 5302: 5300: 5296: 5290: 5287: 5285: 5282: 5280: 5277: 5275: 5272: 5270: 5267: 5265: 5262: 5260: 5257: 5255: 5252: 5250: 5247: 5245: 5242: 5240: 5237: 5235: 5232: 5230: 5227: 5225: 5222: 5220: 5217: 5215: 5212: 5210: 5207: 5205: 5202: 5200: 5197: 5195: 5192: 5190: 5189:eventtriggers 5187: 5185: 5182: 5180: 5177: 5175: 5172: 5170: 5167: 5166: 5164: 5160: 5154: 5151: 5149: 5146: 5144: 5141: 5139: 5136: 5134: 5131: 5129: 5126: 5124: 5121: 5119: 5116: 5114: 5111: 5109: 5106: 5104: 5101: 5099: 5096: 5094: 5091: 5089: 5086: 5084: 5081: 5079: 5076: 5074: 5071: 5069: 5066: 5064: 5061: 5059: 5056: 5054: 5051: 5049: 5046: 5044: 5041: 5039: 5036: 5034: 5031: 5029: 5026: 5025: 5023: 5019: 5013: 5010: 5008: 5005: 5003: 5000: 4998: 4995: 4993: 4990: 4988: 4985: 4983: 4980: 4978: 4975: 4973: 4970: 4968: 4965: 4963: 4960: 4958: 4955: 4953: 4950: 4948: 4945: 4944: 4942: 4940: 4936: 4930: 4927: 4925: 4922: 4920: 4917: 4915: 4912: 4910: 4907: 4905: 4902: 4900: 4897: 4895: 4892: 4891: 4889: 4887:File contents 4885: 4879: 4876: 4874: 4871: 4869: 4866: 4864: 4861: 4859: 4856: 4854: 4851: 4849: 4846: 4844: 4841: 4839: 4836: 4834: 4831: 4829: 4826: 4824: 4821: 4819: 4816: 4814: 4811: 4810: 4808: 4804: 4798: 4795: 4793: 4790: 4788: 4785: 4783: 4780: 4778: 4775: 4774: 4772: 4768: 4762: 4759: 4757: 4754: 4752: 4749: 4747: 4744: 4742: 4739: 4737: 4734: 4732: 4729: 4727: 4724: 4722: 4719: 4717: 4714: 4712: 4709: 4708: 4706: 4702: 4696: 4693: 4691: 4688: 4686: 4683: 4681: 4678: 4676: 4673: 4671: 4668: 4666: 4663: 4661: 4658: 4656: 4653: 4651: 4648: 4646: 4643: 4641: 4638: 4636: 4633: 4631: 4628: 4626: 4623: 4621: 4618: 4616: 4613: 4611: 4608: 4606: 4603: 4601: 4598: 4597: 4595: 4591: 4585: 4582: 4580: 4577: 4575: 4572: 4570: 4567: 4565: 4562: 4560: 4557: 4556: 4554: 4550: 4544: 4541: 4539: 4536: 4534: 4531: 4528: 4525: 4523: 4520: 4517: 4514: 4512: 4509: 4507: 4504: 4502: 4499: 4497: 4494: 4491: 4488: 4486: 4483: 4481: 4478: 4475: 4472: 4470: 4467: 4465: 4462: 4460: 4457: 4455: 4452: 4450: 4447: 4446: 4444: 4440: 4434: 4431: 4429: 4426: 4424: 4421: 4419: 4416: 4413: 4410: 4409: 4407: 4403: 4397: 4394: 4392: 4389: 4387: 4384: 4382: 4379: 4378: 4375: 4371: 4368:programs and 4367: 4364: 4357: 4352: 4350: 4345: 4343: 4338: 4337: 4334: 4322: 4318: 4314: 4313: 4310: 4300: 4297: 4295: 4292: 4290: 4287: 4285: 4282: 4280: 4277: 4276: 4274: 4272: 4268: 4258: 4255: 4253: 4250: 4248: 4245: 4243: 4240: 4238: 4235: 4233: 4230: 4228: 4225: 4223: 4220: 4218: 4215: 4213: 4210: 4208: 4205: 4203: 4200: 4198: 4195: 4193: 4190: 4189: 4187: 4183: 4177: 4174: 4172: 4169: 4168: 4166: 4164: 4160: 4154: 4151: 4149: 4146: 4144: 4141: 4139: 4136: 4134: 4131: 4129: 4126: 4124: 4121: 4119: 4116: 4115: 4113: 4111: 4107: 4101: 4098: 4096: 4093: 4091: 4088: 4086: 4083: 4081: 4078: 4076: 4073: 4072: 4070: 4068: 4064: 4061: 4059: 4055: 4052: 4048: 4042: 4036: 4026: 4023: 4021: 4018: 4016: 4013: 4011: 4008: 4006: 4003: 4001: 3998: 3996: 3993: 3991: 3988: 3986: 3983: 3982: 3980: 3978: 3974: 3968: 3965: 3963: 3960: 3958: 3955: 3953: 3950: 3948: 3945: 3943: 3940: 3938: 3935: 3933: 3930: 3926: 3923: 3921: 3918: 3917: 3916: 3913: 3911: 3908: 3904: 3901: 3899: 3896: 3894: 3891: 3890: 3889: 3886: 3885: 3883: 3881: 3877: 3874: 3870: 3864: 3858: 3850: 3846: 3844: 3840: 3834: 3831: 3829: 3826: 3824: 3821: 3819: 3816: 3814: 3811: 3809: 3806: 3804: 3801: 3799: 3796: 3794: 3791: 3789: 3786: 3785: 3783: 3779: 3776: 3772:Non-archiving 3770: 3760: 3757: 3755: 3752: 3750: 3747: 3745: 3742: 3740: 3739:PowerArchiver 3737: 3735: 3732: 3730: 3727: 3725: 3722: 3720: 3717: 3715: 3712: 3710: 3707: 3705: 3702: 3701: 3699: 3697: 3693: 3687: 3684: 3682: 3679: 3676: 3673: 3670: 3667: 3664: 3661: 3659: 3656: 3654: 3651: 3650: 3648: 3646: 3642: 3636: 3633: 3631: 3628: 3626: 3623: 3620: 3617: 3615: 3612: 3610: 3607: 3605: 3602: 3600: 3597: 3595: 3592: 3590: 3587: 3585: 3582: 3580: 3577: 3575: 3572: 3570: 3567: 3566: 3564: 3562: 3561:Free software 3558: 3555: 3551: 3542: 3538: 3533: 3526: 3521: 3519: 3514: 3512: 3507: 3506: 3503: 3491: 3483: 3481: 3473: 3471: 3467: 3463: 3462: 3459: 3453: 3450: 3448: 3445: 3443: 3440: 3438: 3435: 3434: 3432: 3428: 3422: 3419: 3417: 3414: 3412: 3409: 3407: 3404: 3402: 3399: 3397: 3394: 3390: 3387: 3385: 3382: 3380: 3377: 3376: 3375: 3372: 3370: 3367: 3365: 3362: 3360: 3357: 3355: 3352: 3350: 3347: 3345: 3342: 3341: 3339: 3337: 3333: 3327: 3324: 3322: 3319: 3317: 3314: 3312: 3309: 3307: 3304: 3301: 3297: 3294: 3293: 3292: 3289: 3287: 3284: 3282: 3279: 3277: 3274: 3272: 3269: 3267: 3264: 3262: 3259: 3257: 3254: 3252: 3249: 3247: 3244: 3242: 3239: 3236: 3234: 3231: 3229: 3226: 3224: 3221: 3219: 3216: 3214: 3211: 3209: 3206: 3204: 3201: 3199: 3196: 3194: 3191: 3190: 3188: 3184: 3178: 3175: 3173: 3170: 3168: 3165: 3163: 3160: 3158: 3155: 3153: 3150: 3148: 3145: 3143: 3140: 3138: 3135: 3133: 3130: 3128: 3125: 3123: 3120: 3119: 3117: 3113: 3107: 3104: 3102: 3099: 3097: 3094: 3092: 3089: 3087: 3084: 3082: 3079: 3077: 3074: 3073: 3071: 3067: 3063: 3056: 3051: 3049: 3044: 3042: 3037: 3036: 3033: 3027: 3024: 3022: 3019:File Formats 3018: 3015: –  3012: 3007: 3004: 3000: 2997: –  2994: 2989: 2987: 2983: 2980: –  2977: 2972: 2970: 2966: 2963: –  2960: 2955: 2953: 2949: 2946: –  2943: 2938: 2935: 2932: –  2929: 2924: 2922: 2916: 2911: 2909: 2906:Programmer's 2905: 2902: –  2899: 2894: 2891: 2887: 2881: 2876: 2873: 2872:C.4 Utilities 2870: 2867: 2864: 2861: 2858: 2857: 2853: 2847: 2843: 2840: –  2837: 2830: 2827: 2816: 2812: 2805: 2802: 2798: 2793: 2790: 2786: 2781: 2778: 2766: 2759: 2756: 2744: 2737: 2734: 2723:on 2023-07-09 2722: 2718: 2711: 2708: 2703: 2699: 2693: 2690: 2685: 2678: 2675: 2663: 2659: 2652: 2649: 2644: 2640: 2634: 2631: 2627: 2614: 2610: 2606: 2600: 2597: 2594: 2591:File Formats 2590: 2587: –  2584: 2577: 2575: 2571: 2566: 2562: 2556: 2553: 2548: 2544: 2538: 2535: 2532: 2528: 2522: 2515: 2512: 2501: 2497: 2491: 2488: 2484: 2479: 2476: 2464: 2460: 2454: 2452: 2450: 2446: 2435: 2429: 2425: 2421: 2420: 2412: 2409: 2396: 2392: 2388: 2381: 2378: 2367: 2363: 2357: 2354: 2350:. 2019-03-22. 2349: 2343: 2340: 2327: 2323: 2317: 2314: 2303: 2302: 2294: 2290: 2284: 2281: 2278: 2272: 2269: 2266: 2261: 2258: 2245: 2241: 2235: 2233: 2229: 2217: 2213: 2209: 2202: 2199: 2188:on 2023-11-12 2187: 2183: 2177: 2174: 2169: 2163: 2160: 2148: 2144: 2140: 2136: 2129: 2126: 2114: 2107: 2104: 2099: 2095: 2089: 2086: 2080: 2076: 2073: 2071: 2068: 2066: 2063: 2061: 2058: 2057: 2053: 2046: 2043: 2041: 2038: 2037: 2033: 2030: 2028: 2025: 2024: 2020: 2017: 2015: 2012: 2011: 2008: 2005: 2003: 2000: 1999: 1995: 1992: 1990: 1987: 1986: 1983: 1980: 1978: 1975: 1974: 1970: 1967: 1965: 1962: 1961: 1957: 1954: 1952: 1949: 1948: 1944: 1941: 1938: 1937: 1928: 1923: 1919: 1917: 1914:now offering 1913: 1909: 1905: 1901: 1899: 1895: 1891: 1887: 1883: 1879: 1875: 1871: 1867: 1863: 1859: 1855: 1851: 1847: 1843: 1839: 1836: 1832: 1828: 1823: 1821: 1817: 1813: 1809: 1805: 1801: 1797: 1793: 1789: 1785: 1780: 1778: 1774: 1770: 1763: 1761: 1759: 1755: 1746: 1743: 1740: 1739: 1729: 1702: 1698: 1695: 1691: 1687: 1683: 1679: 1675: 1673: 1669: 1666: 1662: 1660: 1656: 1653: 1651: 1647: 1646: 1645: 1642: 1640: 1637:-format with 1636: 1632: 1628: 1623: 1615: 1613: 1610: 1604: 1597: 1595: 1583: 1577:Random access 1576: 1574: 1572: 1568: 1564: 1555: 1553: 1540: 1536: 1531: 1529: 1525: 1518: 1510: 1508: 1505: 1503: 1498: 1492: 1490: 1488: 1484: 1481: 1473: 1459: 1457: 1453: 1445: 1435: 1420: 1418: 1393: 1378: 1360: 1354:-v, --verbose 1352: 1346: 1340: 1334: 1328: 1325: 1317: 1309: 1298: 1292: 1291: 1290: 1281: 1276: 1274: 1272: 1254: 1248: 1244: 1241: 1237: 1234: 1231: 1228: 1225: 1221: 1218: 1215: 1212: 1209: 1206: 1203: 1199: 1196: 1195: 1194: 1192: 1188: 1184: 1176: 1174: 1172: 1166: 1157: 1154: 1153: 1149: 1146: 1145: 1141: 1138: 1137: 1133: 1130: 1129: 1125: 1122: 1121: 1118: 1115: 1112: 1111: 1108: 1105: 1102: 1101: 1098: 1097:Block special 1095: 1092: 1091: 1088: 1085: 1082: 1081: 1078: 1077:Symbolic link 1075: 1072: 1071: 1068: 1065: 1062: 1061: 1057: 1054: 1051: 1047: 1046: 1042: 1039: 1038: 1032: 1030: 1020: 1017: 1014: 1013: 1009: 1006: 1003: 1002: 998: 995: 992: 991: 987: 984: 981: 980: 976: 973: 970: 969: 965: 962: 959: 958: 954: 951: 948: 947: 944: 941: 938: 935: 934: 930: 927: 924: 923: 920: 917: 914: 911: 910: 906: 903: 901:Field offset 900: 899: 896: 894: 886: 884: 880: 877: 872: 869: 865: 861: 856: 854: 845: 844:Symbolic link 842: 839: 838: 835: 832: 829: 828: 824: 821: 818: 814: 813: 809: 806: 805: 799: 797: 787: 784: 781: 780: 776: 773: 770: 769: 765: 762: 759: 758: 754: 751: 748: 747: 743: 740: 737: 736: 732: 729: 726: 725: 721: 718: 715: 714: 710: 707: 704: 703: 699: 696: 693: 692: 688: 685: 683:Field offset 682: 681: 678: 675: 671: 669: 665: 661: 657: 649: 647: 644: 640: 636: 631: 629: 625: 617: 615: 613: 609: 605: 597: 595: 593: 589: 584: 582: 573: 571: 567: 563: 559: 554: 552: 548: 544: 540: 532: 530: 528: 524: 523: 518: 514: 510: 506: 502: 501:magnetic tape 498: 494: 490: 486: 482: 478: 468: 464: 459: 456: 454: 450: 448: 444: 441: 440:File archiver 438: 434: 426: 424: 420: 416: 406: 404: 400: 396: 394: 390: 384: 382: 378: 372: 370: 366: 356: 351: 346: 345:Public domain 341: 336: 332: 330: 326: 323: 320: 318: 314: 311: 308: 306: 302: 299: 295: 291: 287: 283: 280: 278: 274: 271: 267: 263: 260:pdtar, star, 259: 255: 251: 242: 238: 234: 230: 226: 222: 217: 212: 208: 204: 200: 195: 192: 188: 184: 170: 166: 162: 158: 154: 152: 148: 145: 142: 140: 136: 124: 121: 113: 102: 99: 95: 92: 88: 85: 81: 78: 74: 71: –  70: 66: 65:Find sources: 59: 55: 49: 48: 43:This article 41: 37: 32: 31: 19: 4583: 4366:command-line 4294:MSU Lossless 4138:Nero Digital 4085:Nero Digital 3599:KGB Archiver 3090: 2948:Solaris 11.4 2829: 2818:. Retrieved 2814: 2804: 2799:, github.com 2792: 2780: 2768:. Retrieved 2758: 2746:. Retrieved 2736: 2725:. Retrieved 2721:the original 2710: 2701: 2692: 2677: 2665:. Retrieved 2661: 2651: 2642: 2633: 2624: 2617:. Retrieved 2613:the original 2608: 2599: 2564: 2555: 2546: 2537: 2514: 2503:. Retrieved 2499: 2490: 2478: 2467:. Retrieved 2465:. 2019-02-23 2462: 2437:. Retrieved 2418: 2411: 2399:. Retrieved 2395:the original 2390: 2385:Hoo, James. 2380: 2369:. Retrieved 2365: 2356: 2342: 2330:. Retrieved 2328:. 2017-12-19 2325: 2316: 2305:. Retrieved 2299: 2283: 2276: 2271: 2264: 2260: 2248:. Retrieved 2243: 2219:. Retrieved 2211: 2201: 2190:. Retrieved 2186:the original 2176: 2162: 2151:. Retrieved 2128: 2116:. Retrieved 2106: 2097: 2088: 1908:8.3 filename 1902: 1889: 1888:(short form 1885: 1881: 1880:(lzip), and 1877: 1869: 1865: 1857: 1849: 1845: 1844:(gzip), and 1841: 1840:(compress), 1837: 1824: 1819: 1815: 1781: 1777:somefile.tar 1776: 1772: 1768: 1767: 1751: 1744: 1700: 1696: 1677: 1670: 1657: 1648: 1643: 1634: 1619: 1605: 1601: 1584: 1580: 1556: 1532: 1528:hacker slang 1523: 1521: 1506: 1499: 1496: 1477: 1465:tarcf-srcdir 1449: 1429: 1402: 1387: 1364: 1330:-r, --append 1294:-c, --create 1288: 1255: 1252: 1239: 1235: 1229: 1223: 1219: 1213: 1207: 1201: 1197: 1187:extended tar 1186: 1180: 1167: 1163: 1058:Normal file 1028: 1026: 942: 918: 892: 890: 887:UStar format 881: 873: 857: 850: 825:Normal file 795: 793: 676: 672: 653: 634: 632: 621: 601: 585: 574: 555: 536: 526: 520: 519:in favor of 516: 493:distribution 488: 485:archive file 480: 474: 452: 411: 403:Magic number 335:BSD-2-Clause 219:/ 2023-07-18 151:Developer(s) 116: 107: 97: 90: 83: 76: 64: 52:Please help 47:verification 44: 5214:pnpunattend 5184:eventcreate 5179:driverquery 5138:ssh-keyscan 4381:COMMAND.COM 4041:compression 3863:compression 3774:compressors 3545:compression 2770:October 23, 2748:October 23, 2702:www.gnu.org 2667:15 December 2639:"bsdtar(1)" 2626:properties. 2619:3 September 2401:3 September 2366:ftp.gnu.org 2244:FreeBSD.org 2143:mod.sources 1971:.taz, .tgz 1939:Compressor 1818:, is named 1816:archive.tar 1784:compression 1493:Limitations 1487:source code 1480:open-source 1390:archive.tar 1367:archive.tar 1361:Basic usage 904:Field size 686:Field size 618:File format 604:data blocks 505:file system 463:Open format 157:open-source 5462:Categories 5244:systeminfo 5133:ssh-keygen 5021:Networking 4665:manage-bde 4635:diskshadow 4315:See also: 4222:libavcodec 4067:MPEG-4 ASP 4047:comparison 3995:libavcodec 3937:libavcodec 3869:comparison 3696:Commercial 3550:comparison 3470:Comparison 2820:2019-08-06 2797:tarfile.py 2727:2023-09-02 2662:Super User 2505:2022-07-11 2469:2019-08-11 2439:2022-11-10 2371:2020-08-26 2362:"Blocking" 2307:2020-09-05 2192:2023-11-12 2168:"posixtar" 2153:2022-02-07 2081:References 2034:.tZ, .taZ 1697:Schily tar 1693:interface. 1690:libarchive 1598:Duplicates 1409:README.txt 1371:README.txt 1348:-t, --list 1342:-f, --file 1189:format or 931:Type flag 700:File name 515:abandoned 257:Written in 235:? / ? 232:Plan 9 tar 213:1.35  163:developers 161:commercial 110:April 2012 80:newspapers 5419:tpmvscmgr 5128:ssh-agent 5033:bitsadmin 4939:Scripting 4704:Processes 4552:Archiving 4506:openfiles 4247:libtheora 4148:QuickTime 4010:OptimFROG 3962:libvorbis 3729:MacBinary 3724:BetterZip 3686:ZipGenius 3625:Xarchiver 3541:Archivers 3177:Zstandard 2139:Newsgroup 1993:.tar.lzma 1567:GNU Emacs 1324:Zstandard 1320:*.tar.zst 1314:then use 1306:then use 1181:In 1997, 1107:Directory 1067:Hard link 1029:type flag 868:gigabytes 834:Hard link 614:records. 598:Rationale 558:Unix-like 509:directory 477:computing 338:GNU tar: 333:BSD tar: 286:Unix-like 5394:gpupdate 5389:gpresult 5315:bootsect 5274:wevtutil 5254:typeperf 5249:tracerpt 5239:sxstrace 5224:REAgentC 5209:ntbackup 5174:dispdiag 5169:auditpol 5083:PathPing 5078:nslookup 5053:ipconfig 5048:hostname 4977:forfiles 4828:graftabl 4797:regsvr32 4770:Registry 4761:tasklist 4756:taskkill 4746:shutdown 4741:schtasks 4726:powercfg 4695:vssadmin 4680:scandisk 4670:refsutil 4640:drvspace 4630:diskraid 4625:diskpart 4620:diskcopy 4615:diskcomp 4564:extrac32 4533:robocopy 4518:(rename) 4289:Lagarith 4271:Lossless 4237:Sorenson 4192:CineForm 4143:OpenH264 4123:Blu-code 3977:Lossless 3957:Musepack 3952:libspeex 3843:For code 3828:XZ Utils 3793:compress 3645:Freeware 3594:Info-ZIP 3579:Expander 3534:software 3490:Category 3384:Java RAR 3132:compress 2221:17 April 2147:Archived 2054:See also 2044:.tar.zst 2027:compress 2006:.tar.lzo 1955:.tar.bz2 1812:compress 1686:Mac OS X 1573:buffer. 1552:Mac OS X 1517:zip bomb 1419: : 1312:*.tar.xz 1304:*.tar.gz 1214:linkpath 1171:MASSCOMP 1147:'A'–'Z' 1048:'0' or ( 1043:Meaning 876:checksum 815:'0' or ( 810:Meaning 656:metadata 447:Standard 430:various 355:CDDL-1.0 348:Plan 9: 305:Platform 155:Various 5414:tpmtool 5348:exe2bin 5320:fixboot 5310:bootcfg 5305:bcdedit 5279:winmgmt 5269:wecutil 5264:WBAdmin 5219:pnputil 5204:msiexec 5199:mofcomp 5143:tracert 5123:ssh-add 5093:rpcping 5073:netstat 5058:nbtstat 5012:timeout 4957:cscript 4919:findstr 4605:convert 4574:makecab 4569:extract 4538:takeown 4522:replace 4511:recover 4480:deltree 4476:(erase) 4464:compact 4414:(chdir) 4363:Windows 4284:Huffyuv 4197:Cinepak 4118:CoreAVC 4020:WavPack 4015:Shorten 3947:libopus 3942:libcelt 3932:TooLAME 3781:Generic 3744:StuffIt 3584:FreeArc 3218:Cabinet 3017:FreeBSD 2982:OpenBSD 2965:FreeBSD 2842:FreeBSD 2785:tarfile 2589:FreeBSD 2391:e7z Org 2212:gnu.org 2141::  2118:26 July 2018:.tar.xz 1981:.tar.lz 1968:.tar.gz 1678:BSD tar 1672:FreeBSD 1650:Solaris 1609:symlink 1524:tarbomb 1511:Tarbomb 1446:Tarpipe 639:tarball 635:tarball 556:Today, 533:History 489:tarball 428:various 343:pdtar: 329:License 322:Command 210:GNU tar 202:BSD tar 178:1979-01 176: ( 94:scholar 5409:pentnt 5404:MSCDEX 5353:QBasic 5325:fixmbr 5284:winsat 5194:logman 5108:setspn 5043:getmac 5002:prompt 4962:doskey 4947:choice 4878:whoami 4848:setver 4818:cmdkey 4792:regini 4655:fsutil 4650:format 4610:defrag 4600:chkdsk 4559:expand 4496:mklink 4485:icacls 4459:cipher 4449:attrib 4252:libvpx 4185:Others 4133:FFmpeg 4090:FFmpeg 4005:mp4als 3823:Snappy 3759:WinZip 3754:WinRAR 3749:WinAce 3681:TUGZip 3653:Filzip 3614:PeaZip 3142:Zopfli 3122:Brotli 3021:Manual 3011:tar(5) 3003:Manual 2993:tar(1) 2986:Manual 2976:tar(1) 2969:Manual 2959:tar(1) 2952:Manual 2942:tar(1) 2934:Plan 9 2928:tar(1) 2915:tar(1) 2908:Manual 2898:tar(1) 2846:Manual 2836:tar(1) 2684:"pixz" 2593:Manual 2583:tar(5) 2430:  2332:2 July 2182:"star" 2047:.tzst 2031:.tar.Z 1945:Short 1904:MS-DOS 1882:--zstd 1878:--lzip 1858:--lzop 1850:--lzma 1775:(e.g. 1676:(also 1040:Value 907:Field 807:Value 689:Field 650:Header 643:header 590:since 568:, and 525:, yet 491:, for 353:star: 290:Plan 9 262:Plan 9 96:  89:  82:  75:  67:  5384:dpath 5369:break 5343:debug 5259:w32tm 5229:relog 5153:winrs 5148:winrm 5098:route 5068:netsh 4997:pause 4924:print 4904:edlin 4873:where 4863:title 4782:ftype 4777:assoc 4751:start 4731:runas 4675:subst 4660:label 4645:fdisk 4543:xcopy 4527:rmdir 4490:mkdir 4454:cacls 4428:pushd 4217:Indeo 4207:DNxHD 4202:Daala 4110:H.264 4058:Lossy 4039:Video 3920:l3enc 3880:Lossy 3861:Audio 3788:bzip2 3709:ALZip 3663:Lhasa 3630:Zipeg 3569:7-Zip 3261:lrzip 3127:bzip2 3001:User 2999:Linux 2296:(PDF) 2250:2 May 2021:.txz 1996:.tlz 1951:bzip2 1894:lrzip 1810:, or 1792:bzip2 1748:2003. 1665:Linux 1639:POSIX 1607:is a 1571:dired 1526:, in 1326:etc.; 1310:, if 1271:7-Zip 1247:UTF-8 1224:gname 1220:uname 1202:mtime 1198:atime 1050:ASCII 864:space 860:octal 853:slash 817:ASCII 664:ASCII 624:ustar 581:IBM i 570:bzip2 547:POSIX 513:POSIX 298:IBM i 224:pdtar 101:JSTOR 87:books 5399:help 5379:dism 5289:wmic 5113:sftp 5088:ping 5038:curl 4992:more 4982:goto 4967:echo 4952:clip 4929:type 4914:find 4899:edit 4894:comp 4858:time 4853:setx 4838:path 4833:mode 4823:date 4813:chcp 4721:kill 4716:exit 4529:(rd) 4501:move 4492:(md) 4469:copy 4433:tree 4423:popd 4319:and 4299:YULS 4279:FFV1 4176:x265 4171:DivX 4163:HEVC 4153:x264 4128:DivX 4100:Xvid 4095:HDX4 4080:DivX 4075:3ivx 4025:L2HC 3990:FLAC 3985:ALAC 3925:LAME 3903:FAAC 3833:zstd 3818:rzip 3813:pack 3808:lzop 3803:lzip 3798:gzip 3635:ZPAQ 3543:with 3480:List 3421:XBAP 3401:MSIX 3354:APPX 3326:ZPAQ 3296:sitx 3286:rzip 3246:.egg 3241:.dmg 3237:DGCA 3162:lzop 3157:lzip 3147:LZMA 3137:gzip 3106:WARC 3086:shar 3081:cpio 2772:2021 2750:2021 2669:2023 2621:2019 2483:NEWS 2428:ISBN 2403:2019 2334:2018 2252:2017 2223:2019 2120:2023 2040:zstd 2002:lzop 1989:lzma 1977:lzip 1964:gzip 1942:Long 1927:gzip 1866:--xz 1862:lzop 1854:LZMA 1829:and 1808:zstd 1804:lzma 1800:lzip 1788:gzip 1773:.tar 1758:cpio 1756:and 1738:-tar 1701:star 1629:and 1627:cpio 1417:gzip 1322:for 1308:gzip 1277:Uses 1230:size 1208:path 1139:'x' 1131:'g' 1123:'7' 1117:FIFO 1113:'6' 1103:'5' 1093:'4' 1083:'3' 1073:'2' 1063:'1' 1027:The 1018:155 1015:345 1004:337 993:329 982:297 971:265 960:263 949:257 939:100 936:157 925:156 915:156 874:The 840:'2' 830:'1' 785:100 782:157 771:156 760:148 749:136 738:124 727:116 716:108 705:100 697:100 626:and 575:The 566:gzip 374:.tar 317:Type 282:Unix 240:star 159:and 73:news 5424:wsl 5374:cls 5234:sfc 5118:ssh 5103:scp 5063:net 5028:arp 5007:rem 4972:for 4868:ver 4843:set 4787:reg 4690:vol 4685:sys 4584:tar 4579:pax 4516:ren 4474:del 4418:dir 4242:VP7 4232:SBC 3915:MP3 3888:AAC 3849:UPX 3719:ARJ 3704:ARC 3658:LHA 3619:XAD 3609:pax 3604:PAQ 3574:Ark 3452:PAQ 3416:XAP 3411:RPM 3396:MSI 3389:EAR 3379:WAR 3374:JAR 3369:ipa 3364:HAP 3359:deb 3349:App 3344:apk 3321:ZIP 3316:zoo 3311:Xar 3306:UDA 3302:SQX 3291:sit 3281:RAR 3276:PEA 3271:MPQ 3266:LZX 3256:LHA 3251:kgb 3233:dar 3228:cpt 3223:cfs 3208:ARJ 3203:ARC 3198:ACE 3152:LZ4 3101:WAD 3096:LBR 3091:tar 2921:GNU 2880:pax 2866:tar 2521:pax 2500:GNU 2463:GNU 2424:196 2301:IBM 2289:IBM 1912:FAT 1906:'s 1898:lz4 1876:), 1868:or 1864:), 1856:), 1831:GNU 1827:BSD 1779:). 1769:tar 1754:pax 1736:ESS 1725:ɑːr 1674:tar 1661:tar 1659:GNU 1652:tar 1635:tar 1631:pax 1587:tar 1563:Vim 1537:or 1463:$ 1439:$ 1424:$ 1413:src 1397:$ 1382:$ 1375:src 1261:or 1240:gid 1236:uid 1191:pax 1183:Sun 1053:NUL 985:32 974:32 820:NUL 752:12 741:12 670:). 628:pax 612:KiB 577:tar 551:pax 527:tar 522:pax 517:tar 497:I/O 481:tar 475:In 469:Yes 453:pax 363:tar 350:MIT 266:GNU 133:tar 56:by 5464:: 4987:if 4909:fc 4736:sc 4711:at 4412:cd 3213:B1 3193:7z 3172:xz 3167:SQ 3076:ar 2813:. 2700:. 2660:. 2641:. 2623:. 2607:. 2573:^ 2563:. 2545:. 2498:. 2461:. 2448:^ 2426:. 2389:. 2364:. 2324:. 2298:. 2291:. 2242:. 2231:^ 2210:. 2145:. 2137:. 2096:. 2014:xz 1918:. 1896:, 1890:-a 1874:xz 1806:, 1802:, 1798:, 1796:xz 1794:, 1790:, 1732:, 1591:-n 1544:-P 1522:A 1377:: 1318:, 1316:xz 1238:, 1222:, 1200:, 1055:) 1007:8 996:8 963:2 952:6 928:1 912:0 822:) 774:1 763:8 730:8 719:8 708:8 694:0 572:. 564:, 562:xz 479:, 296:, 292:, 288:, 284:, 268:: 264:, 4355:e 4348:t 4341:v 4049:) 4045:( 3871:) 3867:( 3552:) 3548:( 3524:e 3517:t 3510:v 3054:e 3047:t 3040:v 2823:. 2774:. 2752:. 2730:. 2704:. 2686:. 2671:. 2645:. 2567:. 2549:. 2508:. 2472:. 2442:. 2405:. 2374:. 2336:. 2310:. 2254:. 2225:. 2195:. 2170:. 2156:. 2122:. 2100:. 1872:( 1870:J 1860:( 1852:( 1846:j 1842:z 1838:Z 1728:/ 1722:t 1719:ˌ 1716:s 1713:ɛ 1710:ˈ 1707:/ 1703:( 1519:. 1467:| 1263:g 1259:x 1249:) 608:B 465:? 270:C 180:) 123:) 117:( 112:) 108:( 98:· 91:· 84:· 77:· 50:. 20:)

Index

Tar (file format)

verification
improve this article
adding citations to reliable sources
"Tar" computing
news
newspapers
books
scholar
JSTOR
Learn how and when to remove this message
Original author(s)
Bell Laboratories
Developer(s)
open-source
commercial
Stable release(s)
Edit this on Wikidata
Plan 9
GNU
C
Operating system
Unix
Unix-like
Plan 9
Microsoft Windows
IBM i
Platform
Cross-platform

Text is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply.