Skip to content

Instantly share code, notes, and snippets.

@nickwhitt
Created June 27, 2012 19:28
Show Gist options
  • Save nickwhitt/3006246 to your computer and use it in GitHub Desktop.
Save nickwhitt/3006246 to your computer and use it in GitHub Desktop.
Tar and Compress
tar.bz2
compress: tar -jcvf archive_name.tar.bz2 directory_to_compress
extract: tar -jxvf archive_name.tar.bz2 [-C /tmp/extract_here/]
tar.gz
compress: tar -zcvf archive_name.tar.gz directory_to_compress
extract: tar -zxvf archive_name.tar.gz [-C /tmp/extract_here/]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment