tldr/pages/common/tar.md

33 lines
708 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.
2013-12-08 08:56:16 +00:00
- Create an archive from files:
2013-12-08 08:56:16 +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
`tar czf {{target.tar.gz}} {{file1 file2 file3}}`
2013-12-08 08:56:16 +00:00
- Extract an archive in a target folder:
2013-12-08 08:56:16 +00:00
`tar xf {{source.tar}} -C {{folder}}`
- Extract a gzipped archive in the current directory:
`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
`tar xjf {{source.tar.bz2}}`
- Create a compressed archive, using archive suffix to determine the compression program:
`tar caf {{target.tar.xz}} {{file1 file2 file3}}`
- List the contents of a tar file:
`tar tvf {{source.tar}}`