tldr/pages/common/tar.md

38 lines
857 B
Markdown
Raw Normal View History

2013-12-08 08:56:16 +00:00
# tar
> Archiving utility.
> Often combined with a compression method, such as gzip or bzip.
2019-05-14 17:28:03 +01:00
> Homepage: <https://www.gnu.org/software/tar>.
2013-12-08 08:56:16 +00:00
- Create an archive from files:
2013-12-08 08:56:16 +00:00
2019-01-28 18:44:44 +00:00
`tar -cf {{target.tar}} {{file1 file2 file3}}`
2013-12-08 08:56:16 +00:00
- Create a gzipped archive:
2013-12-08 08:56:16 +00:00
2019-01-28 18:44:44 +00:00
`tar -czf {{target.tar.gz}} {{file1 file2 file3}}`
2013-12-08 08:56:16 +00:00
- Extract an archive in a target directory:
2013-12-08 08:56:16 +00:00
`tar -xf {{source.tar}} -C {{directory}}`
- Extract a gzipped archive in the current directory:
2019-01-28 18:44:44 +00:00
`tar -xzf {{source.tar.gz}}`
2014-04-23 19:35:39 +01:00
- Extract a bzipped archive in the current directory:
2014-04-23 19:35:39 +01:00
2019-01-28 18:44:44 +00:00
`tar -xjf {{source.tar.bz2}}`
- Create a compressed archive, using archive suffix to determine the compression program:
2019-01-28 18:44:44 +00:00
`tar -caf {{target.tar.xz}} {{file1 file2 file3}}`
- List the contents of a tar file:
2019-01-28 18:44:44 +00:00
`tar -tvf {{source.tar}}`
- Extract files matching a pattern:
2019-01-28 18:44:44 +00:00
`tar -xf {{source.tar}} --wildcards {{"*.html"}}`