Files
tldr/osx/tar.md
Romain Prieto 11264d9b19 initial commit
2013-12-08 19:56:16 +11:00

273 B

tar

  • Archiving utility
  • Supports tar / 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