Skip to content

Instantly share code, notes, and snippets.

@Guibzs
Last active August 27, 2019 08:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Guibzs/b588864903dcda327dfc8d20b97cf193 to your computer and use it in GitHub Desktop.
Save Guibzs/b588864903dcda327dfc8d20b97cf193 to your computer and use it in GitHub Desktop.
Bash ~ Compress and Extract files
# Compress
tar -cvf folder.tar folder/
gzip folder.tar
# Extract
tar -xvf folder.tar
gzip -d folder.tar.gz
# Compress
zip file.zip file
zip -r file.zip folder
# Extract
unzip file.zip
unzip file.zip -d folder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment