How to untar a gz file in Unix

| Posted by watashii | Filed under Unix

untargz

For a .gz file,

$ gunzip myfile.gz

For .tar.gz file,

$ gzip -dc myfile.tar.gz | tar xvf -

Tags: