Skip to content

Instantly share code, notes, and snippets.

@guillermoroblesjr
Last active August 29, 2015 14:15
Show Gist options
  • Save guillermoroblesjr/6b5f3fa21471cd07d45b to your computer and use it in GitHub Desktop.
Save guillermoroblesjr/6b5f3fa21471cd07d45b to your computer and use it in GitHub Desktop.
7z Compression in the Terminal
# ===[ Compression/7z ]===
# make a 7z archive file out of a directory
# a: add to archive
# -t7z: use 7z file type
# -mx5:
# -mmt: multithread the operation
7z a -t7z <name-of-new-file>.7z <directory-to-be-compressed> -mx5 -mmt
# extract
7z x <fileName>.7z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment