|>
|> : The .gz indicates that the file needs to be uncompressed using GNU's
|> : gunzip utility. It does, however, expect the file to end in a .z, at
|> : least the version that I am using does. Therefore, all you have to do
|>
|> True.
|>
|> What I've done to solve the problem is just use the -c switch on gunzip
|> which sends the data out to stdout - something like this:
|>
|> gunzip -c foo.tar.gz | tar -xvf -
|>
|> Using this, gzip doesn't care about the extension that's being used.
|>
Another solution might be to write a 3 or 4 line script that just moved
the .gz file to a file of the same name with a .z extension and then
gunzipped the new file. This script could then be called directly or
an alias set up for gunzip that would call this script. Maybe not as
simple, but a solution...
Darrell