How to untar a gz file in Unix
| Posted by watashii | Filed under Unix
For a .gz file,
$ gunzip myfile.gz
For .tar.gz file,
$ gzip -dc myfile.tar.gz | tar xvf -
Tags: unix untar gz file

For a .gz file,
$ gunzip myfile.gz
For .tar.gz file,
$ gzip -dc myfile.tar.gz | tar xvf -
Tags: unix untar gz file