Tar Command
April 12, 2005 Posted by KP
Tar can detect an archive with gz compression and extract the files properly, I used to call gunzip first
.
Example
# tar czvf backup.tar.gz *
Extract the archive:
# tar xvf backup.tar.gz
How I did before:
# gunzip dv backup.tar.gz
# tar xvf backup.tar
Related Posts:
Filed Under: Command & Utility