Thread
:
tar?
View Single Post
Milhouse
2007-12-20 , 14:59
Posts: 3,401 | Thanked: 1,255 times | Joined on Nov 2005 @ London, UK
#
6
I think people are mixing terminology here - depending on how forgiving people want to be one could consider "unzipping" to simply mean "extracting" which is precisely what technut explained. If the OP meant "uncompressing" then tar will do this too - just add the z parameter, ie.
Code:
tar xvzf mycompressed.tar.gz
to extract the files from a compressed tar file.
Note that tar on Internet Tablets is quite picky about where the z parameter appears - always put it before the f parameter otherwise tar will complain.
And to view the content of a compressed tar file, use
Code:
tar tvzf mycompressed.tar.gz
As a rule the filenames of compressed tar files end in .gz but this may not always be the case.
Last edited by Milhouse; 2007-12-20 at
15:04
.
Quote & Reply
|
The Following User Says Thank You to Milhouse For This Useful Post:
cripes
Milhouse
View Public Profile
Send a private message to Milhouse
Find all posts by Milhouse