Last active
August 29, 2015 14:15
-
-
Save guillermoroblesjr/6b5f3fa21471cd07d45b to your computer and use it in GitHub Desktop.
7z Compression in the Terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ===[ 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