Last active
August 14, 2020 02:09
-
-
Save vietvudanh/01830f7a56d0dcf27a7d358ed1b209d4 to your computer and use it in GitHub Desktop.
Zip & Unzip
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
# .zip | |
zip -r -o out.zip folder | |
unzip out.zip | |
# xz | |
gzip -r folder | |
gzip -f file | |
gunzip out.gz | |
# tar.gz | |
tar -xzf | |
# tar.xz | |
tar -xf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment