mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 07:18:29 +01:00
388 B
388 B
tar
Archiving utility Optional compression with gzip / bzip
- create an archive from files
tar cf {{target.tar}} {{file1 file2 file3}}
- create a gzipped archive
tar czf {{target.tar.gz}} {{file1 file2 file3}}
- extract an archive in a target folder
tar xf {{source.tar}} -C {{folder}}
- extract a gzipped archive in the current directory
tar xzf {{source.tar.gz}}