Re: .tgz file
Posted by
Terry L. Ridder
on 1999-10-01 06:04:32 UTC
hello;
please forgive the lack of capital letters and any typographical
errors. i am recoverying from left shoulder surgery and typing
one-handed.
'tgz' is shorthand for 'tar.gz'
if you have gnu tar you would use:
tar -tzvf <filename>.tgz
the above command will give you a listing of what
is in the tar archive.
tar -xzvf <filename>.tgz
the above command will extract what
is in the tar archive.
if you do not have gnu tar, you can use:
gunzip < <filename>.tgz | tar -tvf -
this will give you a listing
gunzip < <filename>.tgz | tar -xvf -
this will extract what is in the tar archive.
please forgive the lack of capital letters and any typographical
errors. i am recoverying from left shoulder surgery and typing
one-handed.
'tgz' is shorthand for 'tar.gz'
if you have gnu tar you would use:
tar -tzvf <filename>.tgz
the above command will give you a listing of what
is in the tar archive.
tar -xzvf <filename>.tgz
the above command will extract what
is in the tar archive.
if you do not have gnu tar, you can use:
gunzip < <filename>.tgz | tar -tvf -
this will give you a listing
gunzip < <filename>.tgz | tar -xvf -
this will extract what is in the tar archive.
On Fri, 1 Oct 1999, Keith Dopson wrote:
> From: Keith Dopson <kdopson@...>
>
> I see that the EMC is stored as a .tgz file.
>
> What utility is used to uncompress this file?
>
> Thx,
>
> Keith
>
--
Terry L. Ridder
Blue Danube Software (Blaue Donau Software)
"We do not write software, we compose it."
For as long as I shall live
I will testify to love
I will be a witness in the
silences when words are not enough
With every breath I take
I will give thanks to GOD above
For as long as I shall live
I will testify to love
==Testify To Love==Avalon
Discussion Thread
Keith Dopson
1999-10-01 05:54:04 UTC
.tgz file
stratton@x...
1999-10-01 06:03:53 UTC
Re: .tgz file
Terry L. Ridder
1999-10-01 06:04:32 UTC
Re: .tgz file
Jon Elson
1999-10-01 12:46:08 UTC
Re: .tgz file