News:

To still receiving newsletters from us please subscribe to our Newsletters:
http://tech.groups.yahoo.com/group/developers-Heaven/

Main Menu

How to unzip .tgz files?

Started by admin, December 06, 2009, 06:25:20 PM

Previous topic - Next topic

admin

in Unix a user may untar a compressed (gzipped) tar file with:

tar -zxvf <filename>

The z flag instructs tar to use gzip. A seperate gzip pipe is not required.

Of course, the v flag is not necessary, just makes gzip quite talkative

Also a .tgz file may be untarred with -zxf switches (only).