1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 09:17:57 +01:00
tldr/common/tar.md

21 lines
388 B
Markdown
Raw Normal View History

2013-12-08 09:56:16 +01:00
# tar
> Archiving utility
> Optional compression with gzip / bzip
2013-12-08 09:56:16 +01:00
- create an archive from files
2013-12-08 09:56:16 +01:00
`tar cf {{target.tar}} {{file1 file2 file3}}`
2013-12-08 09:56:16 +01:00
- create a gzipped archive
2013-12-08 09:56:16 +01:00
`tar czf {{target.tar.gz}} {{file1 file2 file3}}`
2013-12-08 09:56:16 +01:00
- extract an archive in a target folder
2013-12-08 09:56:16 +01:00
`tar xf {{source.tar}} -C {{folder}}`
- extract a gzipped archive in the current directory
`tar xzf {{source.tar.gz}}`