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
One Response to “How to untar a gz file in Unix”
-
Leela Says:
July 6th, 2009 at 6:55 amThanks for your tips !!
i know another way ..
$tar -xvzf myfile.tar.gz