Operating System - Tru64 Unix
1820140 Members
3280 Online
109619 Solutions
New Discussion юеВ

How to unzip a tar.gz

 
marco_186
Advisor

How to unzip a tar.gz

Dear all,
anybody help about unzip file.tar.gz
thanks alot
3 REPLIES 3
Venkatesh BL
Honored Contributor

Re: How to unzip a tar.gz

# gunzip file.tar.gz ; will give you file.tar
# tar xvf file.tar ;will give you the contents of the archive
V. Nyga
Honored Contributor

Re: How to unzip a tar.gz

Hi,

a 'tar tvf file.tar' before a 'tar xvf ...' can prevent, that you overwrite own datas.

Volkmar
*** Say 'Thanks' with Kudos ***
Kasper Hedensted
Trusted Contributor

Re: How to unzip a tar.gz

You can also gunzip directly to tar:

gunzip -c file.tar.gz | tar xvf -

Cheers,