Skip to content

Instantly share code, notes, and snippets.

@TelmoM
Created January 24, 2018 14:57
Show Gist options
  • Save TelmoM/02aebbdfd981fce943f04ce5841a9bde to your computer and use it in GitHub Desktop.
Save TelmoM/02aebbdfd981fce943f04ce5841a9bde to your computer and use it in GitHub Desktop.
TAR #tar

TAR

tar -zcvf archive-name.tar.gz directory-name

-z : Compress archive using gzip program
-c: Create archive
-v: Verbose i.e display progress while creating archive
-f: Archive File name

tar -zxvf archive-name.tar.gz
-x: Extract files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment