Skip to content

Instantly share code, notes, and snippets.

@kfitfk
Created April 16, 2015 09:25
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 kfitfk/d71409a715b880551470 to your computer and use it in GitHub Desktop.
Save kfitfk/d71409a715b880551470 to your computer and use it in GitHub Desktop.
Extract a .tar.gz file
tar -xvzf community_images.tar.gz
To explain a little further, tar collected all the files into one package, community_images.tar. The gzip program applied compression, hence the gz extension. So the command does a couple things.
f: this must be the last flag of the command, and the tar file must be immediately after. It tells tar the name and path of the compressed file.
z: tells tar to decompress the archive using gzip
x: tar can collect files or extract them. x does the latter.
v: makes tar talk a lot. Verbose output shows you all the files being extracted.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment