Skip to content

Instantly share code, notes, and snippets.

@vietvudanh
Last active August 14, 2020 02:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vietvudanh/01830f7a56d0dcf27a7d358ed1b209d4 to your computer and use it in GitHub Desktop.
Save vietvudanh/01830f7a56d0dcf27a7d358ed1b209d4 to your computer and use it in GitHub Desktop.
Zip & Unzip
# .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