I understand that *.tar.gz
is a file, which is both archived(.tar
) & compressed(.gz
).
I want to un-compress while retaining the archive. That is from *.tar.gz
, I need to get *.tar
.
When I execute tar zxf filename.tar.gz
, the command un-compresses as well as extracts all the files within this archive. When I ignore the option x
, the usage tar zf filename.tar.gz
seems to be invalid.
tar: You must specify one of the
-Acdtrux' or
--test-label' options
Thanks in advance!