tar.gz comamnds

.tar.gz – Archiving and Extracting files

Create a .tar.gz file from a folder:

tar czf /path/to/output/folder/filename.tar.gz /path/to/folder

Extract a .tar.gz file:

gunzip -c /path/to/folder/filename.tar.gz

View a list of all files in a .tar.gz archive:

gunzip -c /path/to/folder/filename.tar.gz | tar -tvf -

Extract a single file from a .tar.gz file:

gunzip -c /path/to/folder/filename.tar.gz | tar -xvf - path/within/archive/filename.php

g33kadmin

I am a g33k, Linux blogger, developer, student and Tech Writer for Liquidweb.com/kb. My passion for all things tech drives my hunt for all the coolz. I often need a vacation after I get back from vacation....

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.