1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/osx/tar.md
2013-12-08 21:46:24 +11:00

284 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 cfz target.tar.gz file1 file2 file3

extract an archive in a target folder

tar xf source.tar -C folder